I am trying to set a cookie in wordpress. I have my own cookie:
<?php setcookie('test', 'test', 0, '/', '/'); ?>
in header.php of my theme, but when I go to my browser to view my site, I get this error
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
and also my cookie is not set. How to set cookie in wordpress?
I also tried this
function set_new_cookie() {
setcookie('test', 'test', 0, '/', '/');
}
add_action( 'init', 'set_new_cookie');
source
share