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


how to implement read more button in every post of wordpress

我正在现场工作http://www.nickthepromisering.com/

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

要只显示文章内容的一部分,请将主题中的the_content();更改为the_excerpt();

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

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

请注意,这也会删除HTML,否则你可能会得到半开放的标签。。