返回
04 / 233
作者头像
Zairun
13 次阅读

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)

暂无留言,快来发表第一条评论吧~

发表评论

电子邮件地址不会被公开。