使用$more变量的唯一原因是,如果您觉得需要编辑自动显示的“阅读更多”文本。如果你只是想把它拼凑起来,而不在乎它说什么。。。
<?php the_excerpt ?>
代替调用内容的任何位置。因此,例如,在一个页面上显示所有文章摘要的标准循环如下所示。。。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
// You can shove other things like voting and meta data or whatever in here...
<?php the_excerpt ?>
// You can shove other things like voting and meta data or whatever in here...
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>