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?
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?
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
.