2012-06-08 82 views
1

我有下面的代碼段,其輸出一個長的文章:郵政和摘錄

<?php the_content(); ?>

我試圖只顯示文章(第一29個字)的摘錄,剝離出HTML並在最後添加「......更多」。

<?php substr(the_content, 29) ?> 

我試過這個,但它對長度沒有影響。

任何幫助?謝謝

回答

2

你需要的是the_excerpt

<?php the_excerpt(); ?> //and you could check the doc how to set the length. 
+1

你需要的是the_ + 1 –

+0

這麼簡單,謝謝! – user1444027