如何在wordpress的每个帖子中实现阅读更多按钮

时间:2012-02-02 20:38:58

标签: php wordpress

我正在使用网站http://www.nickthepromisering.com/

现在朋友们我的问题是 如何通过添加更多按钮来限制wordpress帖子中的单词数量。 以便只显示一些单词然后何时显示点击阅读更多按钮,显示剩余的帖子。我的意思是有任何插件吗?

2 个答案:

答案 0 :(得分:1)

要仅显示帖子内容的一部分,请在主题中使用the_content();更改the_excerpt();

然后,添加阅读更多类似的链接:<a href="<?php the_permalink(); ?>">Read more</a>

答案 1 :(得分:0)

echo implode (" ", array_slice (explode (" ", strip_tags($post->post_content)), 300));
echo '<a href="' .the_permalink() .'">Read more</a>';

请注意,这也将删除HTML,否则您最终可能会打开半开标签..