How to set cookie in wordpress?

后端 未结 2 606
日久生厌
日久生厌 2021-01-26 00:41

I want to set cookie in wprdpress but its not working.This is my code

add_action(\'init\', \'set_new_cookie\');
    function set_new_cookie() {
        setcookie         


        
2条回答
  •  醉话见心
    2021-01-26 01:24

    setcookie('cart_item',$carts,time() + (86400*30),'/');
    

    Its working fine for me. / at the last is to set cookie for whole site. Remove / to set cookie for particulat directory only.

提交回复
热议问题