如果有摘要,wordpress中主页、归档和tags等的archives都以摘要的形式显示,而我的自定义page页面却直接显示每篇文章的全文,虽然也设置了<!–more–>标记。终于在wordpress的codex中找到了解决方法。
在模板的
the_content(__(‘Read more…’));
前面加上代码
<?php global $more; $more = 0; ?> //The code must be inserted ahead of the call to the content //<?php the_content('Continue Reading'); ?>
本文发表于水景一页。永久链接:<http://cnzhx.net/blog/enable-more-tag-in-page-of-wordpress/>。转载请保留此信息及相应链接。