如何限制wordpress博客中的帖子内容

时间:2015-01-08 15:09:25

标签: wordpress wordpress-theming

我想限制wordpress博客上的帖子内容。因此,在特定数量的单词内容应该被限制,并将有一个链接说阅读更多.. Plz指导我如何在php wordpress主题中完成它

1 个答案:

答案 0 :(得分:0)

WordPress编辑器中有一个标签,您可以使用它来指定博客/页面摘录中的截止点。

您只需点击此按钮即可实现截止

enter image description here

然后在您的模板中,您只需要将第一个参数添加到the_content(),它将显示截至该截止的内容。如果未设置参数,则会显示所有内容。

例如:

the_content('Show more...'); // shows content till the cutoff then shows the text supplied

the content(); //shows all the content

在此处详细了解更多标记:http://codex.wordpress.org/Customizing_the_Read_More

相关问题