2011-07-27 163 views
0

目前我的wordpress主題顯示了主頁上的帖子中的所有單詞,甚至很長的帖子。我想將其限制在一個合理的數字上,讓最多1500個單詞顯示在主頁上,然後在下面應該有一個「閱讀更多」鏈接。 我使用工具箱主題繼承人1. content.php和2 index.php。限制wordpress博客主頁上顯示的帖子的字數

1. http://i.stack.imgur.com/rUWZv.png 
2. http://i.stack.imgur.com/YrZGS.png 

回答

0

您可以在wordpress所見即所得中使用'insert more tag'。

否則,你可以使用這樣的事情來限制字數:(因爲我沒有時間來測試它以此爲僞現在)

//define the number of words 
$length = 1500; 
$text = "Lorem Ipsum dolar sit amet etc etc"; //this would contain the article you are pulling from the database and syntax will depend largely on your theme. 

$shortened = implode(' ',array_slice(str_word_count($text,1),0,$length)); 

echo $shortened . ' ...'; 

然後鏈接到文章:

<a href="<?php the_permalink(); ?>">read more</a> 
相關問題