WordPress4.9.6
之后如果使用自带的comment_form
函数则会输出一个评论Cookie 记录确认的复选框,如果不想显示可以使用官方钩子去掉。
/**移除评论 Cookie 确认复选框*/
add_filter('comment_form_field_cookies','__return_false');
/**默认记录评论 Cookie*/
add_action('set_comment_cookies','coffin_set_cookies',10,3);
function coffin_set_cookies( $comment, $user, $cookies_consent){
$cookies_consent = true;
wp_set_comment_cookies($comment, $user, $cookies_consent);
}
把代码加入到functions.php
中即可,如不需要记录只需要添加前一个就行了。
评论 (0)