WordPress主题站删除Cookie复选栏
WordPress网站删除 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);
}
把代码加入到你当前使用的WordPress主题的 functions.php 中即可,如不需要记录评论cookie只需要添加前一个就行了。
如使用之前的AJAX 评论提交则已默认记录Cookie ,无需此操作。
0条评论