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(“[…]”, “…”, $excerpt);
}
add_filter(“wp_trim_excerpt”, “new_excerpt_more”);

发表评论

邮箱地址不会被公开。 必填项已用*标注