当我在wordpress上发布内容时,它会显示完整的帖子。我想要隐藏完整的帖子并显示一些行。因此,用户点击阅读更多链接将显示完整帖子。任何想法或插件。
答案 0 :(得分:1)
安装automatic read more generator。它将隐藏第一个图像或第一个段落后的所有内容,直到单击链接为止。
答案 1 :(得分:0)
通过一些例子来看这些。可能会派上用场..
http://codex.wordpress.org/Customizing_the_Read_More
http://www.wikihow.com/Add-Read-More-to-Wordpress
希望有所帮助......
答案 2 :(得分:0)
使用_excerpt()代替the_content()
<?php
if ( have_posts() ) while ( have_posts() ) : the_post();
the_excerpt();
endwhile;
?>