只需回显$more
节选后:
<p class="extra"><?php the_excerpt(); echo $more; ?></p>
或者更好的解决方案是使用过滤器并保持模板不变,例如,您的模板只使用
the_excerpt()
<p class="extra"><?php the_excerpt(); ?></p>
<?php
//and this goes in your theme\'s functions.php file
add_filter(\'the_excerpt\',\'my_excerpt_more\');
function my_excerpt_more($excerpt){
return $excerpt. \'.....\';
}