catch box主题搜索结果显示特色图像 featured images now showing in search results

Snip20220328 35

参考官方论坛答疑

catch box 主题搜索结果是摘要,不显示特色图片,去了论坛,有答案。如下:

/wp-content/themes/catch-box/content.php 第38行 左右

`if ( is_search() ) : // Only display Excerpts for Search ?>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div><!– .entry-summary –>`

换成即可:

if ( is_search() ) : // Only display Excerpts for Search ?>
            <div class="entry-summary">
             <?php if ( has_post_thumbnail() ):?>
               		<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-box' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
						<?php the_post_thumbnail('featured-slider'); ?>
                   	</a>
                <?php endif; ?>
                <?php the_excerpt(); ?>
            </div><!-- .entry-summary -->