登录

记录一下,wordpress中设置cookie比较特别

作者:neo yang 时间:2023/08/31 读: 7309

被这个小问题卡了一天。

wordpress中设置cookie比较特别。要写在theme的functions文件中,并加载到init钩子上。

function custom_set_cookie() {
    
    setcookie( 'key', 'value', time() + 3600 * 24, COOKIEPATH, COOKIE_DOMAIN );

}
add_action( 'init', 'custom_set_cookie' );
标签:


copyright © www.lyustu.com all rights reserve.
Theme: TheMoon V3.0. Author:neo yang