【发布时间】:2012-08-01 01:36:58
【问题描述】:
我正在尝试在 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');
【问题讨论】:
-
在 WordPress 中,您应该使用
COOKIEPATH和COOKIE_DOMAIN,否则您可能会遇到 cookie 无法正常工作的问题(请参阅 this answer)