更改WP系统默认摘要的长度

By | 2014年02月11日

默认情况下,excerpt长度设置为55个字,可以使用excerpt_length过滤器改变excerpt的长度,添加如下代码到主题的functions.php文件即可。007

function new_excerpt_length($length) {
   return 200;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);

发表评论

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