作者头像
Zairun
2 天前 2026年02月19日 01:01

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 阅读 33

发表评论