custom COOKIE on custom page

i have problem with create function for set cookie dynamically.

when i try in custom page i have of course header is set and i tried something like this: in custompage.php:

myfunction($cookiename,$cookievalue);

in function.php

add_action("init","myfunction",10,2);
function myfunction($name,$value) {
setcookie($name,$value,time()+3600);
}
add_action("wp_head","mySEOfunction",10,2);
function mySEOfunction($name,$value) {
echo "some meta tags...".$name...
}

i have Missing argument 2 in function.php i tried also this for SEO meta tags created dynamically but i have same problem...

any help?

Topic embed functions actions wp-head Wordpress

Category Web


If all you are doing is setting a cookie on a page then why the complexity? Check this out for a simple answer http://www.w3schools.com/php/func_http_setcookie.asp

My only thought is that you are then trying to redirect them back to Wordpress and if so you may wish to check this Setting custom cookies in Wordpress

I'd say your error "missing function 2" is coming from incorrect syntax for time.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.