Hey there.<p>I'm trying to find out what cookies wordpress sets automatically for all users?<p>I'm creating a page count function (as I dont want to use yet another plugin) and at the moment it is counting everytime I press f5. I just want to be able to do it only once.<p>Thanks for your time. I would have usually put this on stackoverflow but the community isnt to fond of broadish questions nor ones without code / specific problems.
Any reason you want to do this in WP and not using a javascript solution like Google Analytics?<p>Backend page view tracking is not compatible with most forms of response caching.
I write WordPress plugins for my business and if I want to manage cookies I use something like <a href="https://wordpress.org/plugins/wp-session-manager/" rel="nofollow">https://wordpress.org/plugins/wp-session-manager/</a>. This will give you full control.
You can set/read your own cookies when developing on wordpress.<p>I usually us the jQuery cookie plugin for javascript.<p>You can set/read cookies using php as well.