1. 在 function.php 中添加 php
//控制wordpress博客首頁博文顯示內容字數 function excerpttitle($max_length,$content_id) { $content_str = get_post( $content_id )->post_content; if (mb_strlen($content_str,'utf-8') > $max_length ) { $content_str = mb_substr($content_str,0,$max_length,'utf-8').'…'; } return $content_str; }
2. 在 index.php 或 須要引用的地方中,添加wordpress
echo excerpttitle(196,17)