2013-03-25 33 views
0

當我在wordpress上發佈的東西,它顯示完整的帖子。我想隱藏完整的文章並顯示一些行。因此,用戶點擊閱讀更多鏈接的全文將顯示。 PLZ任何想法或插件。WordPress的全文顯示

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

+0

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

回答

0

使用the_excerpt()代替the_content()

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

Read More