wp_trim_words() 一直都在用这个函数,突然一天折腾n久都是出错!直到看见这个文章,才解决问题
https://www.v8wp.com/13881.html
方法一
使用WP内置函数wp_trim_words()截取字数:
1 <?php 2 // 调用文章内容字数 80为字数 3 echo wp_trim_words( get_the_content(), 80 ); 4 // 调用文章摘要字数 80为字数 5 echo wp_trim_words( get_the_excerpt(), 80 ); 6 // 调用文章标题字数 30为字数 7 echo wp_trim_words( get_the_title(), 30 ); 8 ?>
放法二
使用php函数mb_strimwidth()截取字数
//调用文章标题 30为字数
1 <?php echo mb_strimwidth(get_the_title(), 0, 30,\"...\"); ?>
方法三
使用原生函数customTitle ()截取字数:
1、首先将下面的代码添加到主题的functions.php文件中:
//截取文章标题字数
1 2 function customTitle($limit) { 3 $title = get_the_title($post->ID); 4 if(strlen($title) > $limit) { 5 $title = substr($title, 0, $limit) . \'...\'; 6 } 7 echo $title; 8 }
然后在需要调用的地方添加下面的代码即可:
1 <?php customTitle(30); ?> //30位字数 2
以上三种方法都可以实现截取文章摘要和文章标题字数,具体使用哪种方法就看自己习惯了。