设置后我无法获得cookie值。
Notice: Undefined index: posts_notification
在设置时。
functions.php:
add_action( 'init', 'my_setcookie_example' );
function my_setcookie_example() {
if (!isset($_COOKIE['posts_notification'])){
setcookie( 'posts_notification', 'value', time() + 60,COOKIEPATH, COOKIE_DOMAIN);
}
}
// The problem is here :
print_r($_COOKIE['posts_notification'] );
我应该刷新 2 时间来获得此值!!!