1. 程式人生 > >Wordpress 首頁 擷取部份內容

Wordpress 首頁 擷取部份內容

WordPress 3.3 新增了一個 wp_trim_words() 函式,專門用來擷取限定字數的內容,比如文章、摘要、標題等:

<?php
echo wp_trim_words( get_the_content(), 100 ); // 文章內容
echo wp_trim_words( get_the_excerpt(), 100 ); // 文章摘要
echo wp_trim_words( get_the_title(), 100 ); // 文章標題
?>
當然,這個函式預設需要在迴圈中使用。
預設用法:

<?php $trimmed = wp_trim_words( $text, $num_words = 55, $more = null ); ?>
引數:
$text
(字串) (必需) 要擷取的內容
預設: 無
$num_words
(整數) (可選) 限定的字數
預設: 55
$more
(字串) (可選) 擷取後加在尾部的字元
預設: ‘&hellip;’

示例:
<?php
 
$content = get_the_content();
$trimmed_content = wp_trim_words( $content, 40, '<a href="'. get_permalink() .'"> ...閱讀更多</a>' );
echo $trimmed_content;
 
?>
轉載:https://www.wpdaxue.com/wp_trim_words.html