让wordpress的page也能够处理more标记

如果有摘要,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'); ?>

via Customizing the Read More

©

本文发表于水景一页。永久链接:<https://cnzhx.net/blog/enable-more-tag-in-page-of-wordpress/>。转载请保留此信息及相应链接。

时间过去太久,评论已关闭。
如果您有话要说,请到讨论区留言并给出此文章链接。
谢谢您的理解 :-)