在第219个主题中,帖子中的特色图像成为帖子的背景。实际上,它成为标题的背景。我试图让它像默认的头版一样,位于每篇文章的标题之下。
要做到这一点,我需要更改的最小行数是多少?
这是标题的相关部分。php。。。。
<body <?php body_class(); ?>>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php _e( \'Skip to content\', \'twentynineteen\' ); ?></a>
<header id="masthead" class="<?php echo is_singular() && twentynineteen_can_show_post_thumbnail() ? \'site-header featured-image\' : \'site-header\'; ?>">
<div class="site-branding-container">
<?php get_template_part( \'template-parts/header/site\', \'branding\' ); ?>
</div><!-- .layout-wrap -->
<?php if ( is_singular() && twentynineteen_can_show_post_thumbnail() ) : ?>
<div class="site-featured-image">
<?php
twentynineteen_post_thumbnail();
the_post();
$discussion = ! is_page() && twentynineteen_can_show_post_thumbnail() ? twentynineteen_get_discussion_data() : null;
$classes = \'entry-header\';
if ( ! empty( $discussion ) && absint( $discussion->responses ) > 0 ) {
$classes = \'entry-header has-discussion\';
}
?>
<div class="<?php echo $classes; ?>">
<?php get_template_part( \'template-parts/header/entry\', \'header\' ); ?>
</div><!-- .entry-header -->
<?php rewind_posts(); ?>
</div>
<?php endif; ?>
</header><!-- #masthead -->
<div id="content" class="site-content">