WordPress设置更改文章摘要字数

方法一:修改formating.php
找到WorsPress目录wp-includes下formating.php文件,查找unction wp_trim_excerpt($text)函数,再找到excerpt_length,默认值是55,修改成你所需要的值即可。

方法二:修改function.php
找到WorsPressd当前主题目录下function.php文件,添加如下代码即可.

function custom_excerpt_length( $length ) {
return 75;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );