WordPress的全文显示

问题描述:

当我在wordpress上发布的东西,它显示完整的帖子。我想隐藏完整的文章并显示一些行。因此,用户点击阅读更多链接的全文将显示。 PLZ任何想法或插件。WordPress的全文显示

我的网站:http://mlmpublicnews.com/

+0

使用SUBSTR ()函数 – 2013-03-25 11:10:16

安装automatic read more generator。它会隐藏第一张图片或第一段后面的所有内容,直到链接被点击。

查看这些例子。可能会得心应手..

http://codex.wordpress.org/Customizing_the_Read_More

http://www.wikihow.com/Add-Read-More-to-Wordpress

希望它可以帮助..

使用the_excerpt()代替the_content()

<?php 
    if (have_posts()) while (have_posts()) : the_post(); 
     the_excerpt(); 
    endwhile; 
?> 

Read More