1
我有下面的代碼段,其輸出一個長的文章:郵政和摘錄
<?php the_content(); ?>
我試圖只顯示文章(第一29個字)的摘錄,剝離出HTML並在最後添加「......更多」。
<?php substr(the_content, 29) ?>
我試過這個,但它對長度沒有影響。
任何幫助?謝謝
我有下面的代碼段,其輸出一個長的文章:郵政和摘錄
<?php the_content(); ?>
我試圖只顯示文章(第一29個字)的摘錄,剝離出HTML並在最後添加「......更多」。
<?php substr(the_content, 29) ?>
我試過這個,但它對長度沒有影響。
任何幫助?謝謝
你需要的是the_excerpt
<?php the_excerpt(); ?> //and you could check the doc how to set the length.
<?php echo substr(get_the_content(), 0, 29); ?>
the_content打印的內容和get_the_content將得到的。
你需要的是the_ + 1 –
這麼簡單,謝謝! – user1444027