转到仪表板中的主题设置(口袋妖怪->布局)并设置选项“Cut content on the Front/Category page“收件人ON.
Update #1
要更改帖子仅在搜索页面上显示的方式,可以添加
|| is_search()
之后
smt_getOption( \'layout\', \'cuttxton\' )
if( smt_getOption( \'layout\', \'cuttxton\' ) || is_search() )
但最好保存更改的
content.php
新名称下的文件
content_search.php
:
<?php if ( !is_single() ) : ?>
<!-- ========== Post content in posts feed ========== -->
<div class="entry-summary">
<?php
if ( ! post_password_required() ) {
smt_excerpt( \'echo=1\' );
} else the_content( );
?>
<a href=\'<?php the_permalink(); ?>\' class=\'button\'><?php echo smt_translate( \'readmore\' ); ?></a>
<span class=\'post-categories\'><?php the_category(\' \'); ?></span>
</div><!-- .entry-summary -->
<?php endif; ?>
<div class="clear"></div>
</article><!-- #post-## -->
并且在
search.php
使用新模板文件:
// Start the loop.
while ( have_posts() ) : the_post();
get_template_part( \'content_search\' );
// End the loop.
endwhile;
摘录长度可通过以下方式更改
excerpt_length
过滤器(
doc). 您还可以在主题选项中更改摘录长度(“口袋妖怪”->“布局”->“默认摘录长度”)。
代码转到functions.php
:
function custom_excerpt_length( $length ) {
return 20; // number of words
}
add_filter( \'excerpt_length\', \'custom_excerpt_length\', 999 );