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
(string) (required) 要修剪的文本。
Default: None
$num_words
(integer) (optional) 保留的单词个数。
Default: 55
$more
(string) (optional) 修剪之后的文本后面跟的字符
Default: '…' 就是 ...
示例:
<?php $content = get_the_content(); $trimmed_content = wp_trim_words( $content, 40, '<a href="'. get_permalink() .'"> ...阅读更多</a>' ); echo $trimmed_content; ?>