1. 在 function.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 或 需要引用的地方中,添加
echo excerpttitle(196,17)