2016-06-10 107 views

回答

2

如果你只是想改变到期日,你可以使用comment_cookie_lifetime过滤器。

E.g.两年后到期的:

add_filter('comment_cookie_lifetime', 2*YEAR_IN_SECONDS); 

把它改成会话,你需要从set_comment_cookies钩删除默认wp_set_comment_cookies并添加自己的一个设置会话cookie。

实施例:

remove_action('set_comment_cookies', 'wp_set_comment_cookies', 10, 2); 

add_action('set_comment_cookies', function(\WP_Comment $comment, \WP_User $user) 
{ 
    // set session 
}, 10, 2);