我正在尝试在 wordpress 中设置一个 cookie。我的 cookie 设置如下:
<?php setcookie('test', 'test', 0, '/', '/'); ?>
在我的主题的 header.php 中,但是当我去浏览器查看我的网站时,我收到了这个错误
Warning: Cannot modify header information - headers already sent by (output started at /home/content/19/9468119/html/wp-content/themes/twentyeleven/header.php:27) in /home/content/19/9468119/html/wp-content/themes/twentyeleven/header.php on line 201
而且我的 cookie 也没有设置。如何在 wordpress 中设置 cookie?
我也试过这个
function set_new_cookie() {
setcookie('test', 'test', 0, '/', '/');
}
add_action( 'init', 'set_new_cookie');