How to set cookie in wordpress?

后端 未结 2 635
日久生厌
日久生厌 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:35

    Well if this is the sequence your code runs then you need to switch the function and the call to it. Now you are calling the function before you initiated it.

提交回复
热议问题