立即注册 登录
AdvertCN - 广告中国 返回首页

d6mmsm71的个人空间 https://www.advertcn.com/?31989 [收藏] [复制] [分享] [RSS]

日志

WordPress代码实现评论上限设置

已有 183 次阅读2020-12-9 10:51

将下面代码添加主题的 functions.php中

//评论超过一定数量关闭评论
function disable_comments( $posts ) {
    if ( !is_single() ) { 
        return $posts; 
    }
    if ( $posts[0]->comment_count > 100 ) {
        $posts[0]->comment_status = 'disabled';
        $posts[0]->ping_status = 'disabled';
    }
    return $posts;
}
add_filter( 'the_posts', 'disable_comments' );

路过

雷人

握手

鲜花

鸡蛋

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 立即注册

关于我们|联系我们|DMCA|广告服务|小黑屋|手机版|Archiver|Github|网站地图|AdvertCN

GMT+8, 2024-4-27 14:25 , Processed in 0.024449 second(s), 7 queries , Gzip On, MemCache On.

Copyright © 2001-2023, AdvertCN

Proudly Operating in Hong Kong.

返回顶部