WordPress更改文章显示摘要长度

编辑主题文件夹里面的function.php 增加下面代码 /*控制摘要字数*/ function new_excerpt_length($length) {     return 300;   //显示摘要长度 } add_filter(“excerpt_length”, “new_excerpt_length”); function new_excerpt_more($excerpt) {     return str_replace(“[…]”, “…”, $excer…