0

当我在 wordpress 上发布内容时,它会显示完整的帖子。我想隐藏完整的帖子并显示一些行。因此,用户单击阅读更多链接,将显示完整的帖子。请任何想法或插件。

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

4

3 回答 3

1

安装自动阅读更多生成器。它将隐藏第一张图片或第一段之后的所有内容,直到点击链接。

于 2013-03-25T11:07:04.327 回答
0

使用 the_excerpt() 而不是 the_content()

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

阅读更多

于 2013-03-25T14:06:27.513 回答
0

请通过一些示例查看这些内容。可以派上用场。。

http://codex.wordpress.org/Customizing_the_Read_More

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

希望能帮助到你..

于 2013-03-25T11:08:49.527 回答