Bundled Themes: Twenty Twenty custom post types that don't support authors, shows author box.
This fixes the issue where custom post types will show an author box, even if they don't support authors. Props joyously, donmhico. Fixes #48803. git-svn-id: https://develop.svn.wordpress.org/trunk@47799 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
25133cf3f1
commit
7d94081279
@ -338,7 +338,7 @@ function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' )
|
||||
do_action( 'twentytwenty_start_of_post_meta_list', $post_id, $post_meta, $location );
|
||||
|
||||
// Author.
|
||||
if ( in_array( 'author', $post_meta, true ) ) {
|
||||
if ( post_type_supports( get_post_type( $post_id ), 'author' ) && in_array( 'author', $post_meta, true ) ) {
|
||||
|
||||
$has_meta = true;
|
||||
?>
|
||||
|
@ -146,7 +146,7 @@
|
||||
// Single bottom post meta.
|
||||
twentytwenty_the_post_meta( get_the_ID(), 'single-bottom' );
|
||||
|
||||
if ( is_single() ) {
|
||||
if ( post_type_supports( get_post_type( get_the_ID() ), 'author' ) && is_single() ) {
|
||||
|
||||
get_template_part( 'template-parts/entry-author-bio' );
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
||||
// Single bottom post meta.
|
||||
twentytwenty_the_post_meta( get_the_ID(), 'single-bottom' );
|
||||
|
||||
if ( is_single() ) {
|
||||
if ( post_type_supports( get_post_type( get_the_ID() ), 'author' ) && is_single() ) {
|
||||
|
||||
get_template_part( 'template-parts/entry-author-bio' );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user