What I\'m trying to do:
我想显示the_excerpt
, 但我最多有x
角色the_excerpt
可以使用,但我不想显示一个单词的几个字符,只显示整个单词。
Some more information:
此代码位于非单一/非永久链接网页上,如存档、类别、首页和搜索,这使我无法使用<!--more-->
.
The code:
这是我使用的代码:
add_filter( \'excerpt_length\', function( ) {
return 20;
} );
if ( have_posts() ):
while( have_posts() ): the_post();
the_excerpt( );
endwhile;
endif;