WordPress 评论夜间自动改为必须审核
从龙大佬那搬来的 因为白天都醒着,而且手机有提醒,所以对于恶意评论可以做到秒删 但是晚上就不可以了 所以这个就必要使用了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
function lxtx_limit_comment_to_pending($approved, $commentdata){ date_default_timezone_set('Asia/Shanghai'); $time = time(); $t1 = date("Y-m-d",$time).' 09:00:00'; $t2 = date("Y-m-d",$time).' 23:30:00'; $short_t1 = strtotime($t1); $short_t2 = strtotime($t2); if( ($time>$short_t2 || $time<$short_t1) && !current_user_can('manage_options') ){ $approved = 0; } return $approved; } add_action('pre_comment_approved', 'lxtx_limit_comment_to_pending', 10, 2);
|