返回
04 / 233
GeneratePress主题文章摘要设置。中型博客设置150字左右即可。
// 修改碎语摘要字数
function zr_custom_excerpt_length($length) {
if (is_post_type_archive('micropost')) {
return 120; // 这里改成你想要的字数
}
return $length;
}
add_filter('excerpt_length', 'zr_custom_excerpt_length', 999);
0
13
读者留言 (0)
暂无留言,快来发表第一条评论吧~