任何问题请联系WX:uu16853

买模板送网站采集器 让你轻松放开双手运营网站!

购买更多有优惠!

超过限制天数后自动关闭WordPress文章的评论功能

一般的朋友都希望评论越多越好,但也有些朋友希望限制评论数量。下面分享下超过限制天数后自动关闭WordPress文章的评论功能的方法。 访问后台 >设置>讨论,参考下图设置: 你可以直接忽视下文内容啦! 将下面的代码添加到主题的 functions.php 文件即可: 1 2 3 4 5 6 7 8 9 10 //关闭超过N天的旧文章评论 function close_comments( $posts ) { if ( !is_single() ) { return $posts; } if ( time() – strtotime( $posts[0]->post_date_gmt ) > ( 30 * 24 * 60 * 60 ) ) { $posts[0]->comment_status = ‘closed’; $posts[0]->ping_status = […]

当评论达到一定数量后自动关闭WordPress文章的评论功能

超过限制天数后自动关闭WordPress文章的评论功能,是一个限制评论的好方法,当评论达到一定数量后自动关闭WordPress文章的评论功能,这也是一个不错的选择哦! 将下面的代码添加主题的 functions.php 文件即可: 1 2 3 4 5 6 7 8 9 10 11 12 //评论超过一定数量关闭评论 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’ ); //评论超过一定数量关闭评论 function disable_comments( $posts […]

100% Secure Checkout

PayPal / MasterCard / Visa