What's a surefire way to check/set cookies before the php headers are sent? Is there an action or filter that would be the best place to hook a setcookie() function?
|
|
|
Depends on whether or not you need to check against WordPress' user authentication. If you need to know whether they're a logged in user, hook onto If it's something that should fire on every page load, and only checks for existence of the cookie and doesn't need to tap into any of WP's APIs, I'd put it into a custom MU-plugin named |
|||||||||||||||
|
|
I think As for hook, maybe |
|||
|
|
|
You can create a function to check or set a cookie but you have to check for wp-config.php because if you use a redirect the file will get accessed directly before index.php on the redirect. This is from a plugin that Mark Jaquith wrote Age Verification that requires the user to fill out an age verification form before entering the site. I modified it for a liquor, beer, wite site I did.
A better way might exist now. The plugin was written over a year ago. |
|||