How to hook update_post_meta and delete_post_meta?
I’m still struggling to get my head around this whole hooking into things, so I’m really stuck on trying to do the following … Read more
I’m still struggling to get my head around this whole hooking into things, so I’m really stuck on trying to do the following … Read more
I’m trying to debug a plugin which I didn’t develop and I want to list all the registered actions. I’ve read this SO … Read more
Is there a way to know what functions are hooked to a particular hook? For example if I’d like to know what functions … Read more
I am using WordPress 3.1.4 by now. I am confused with where (which hook) do I use: to register and/or enqueue scripts and … Read more
Is there a save_post hook for custom post types? Example: save_my_post_type I know there is publish_my_post_type but I’m looking for a save hook. … Read more
Where can I find a list of all the WordPress hooks and over-ridable functions (pluggable, scriptable, etc)? Edit: Plugin is listed here. 7 … Read more
I have been looking at the plugin API a bit more in depth recently and I was wondering what real differences there were … Read more
In what order add_action hooks execute? i.e. init wp_head wp_footer after_theme_setup etc… ??? ??? ??? EDIT: I’ve also posted my solution. 6 “Data! … Read more
Is a way to pass my own parameters to the function in add_filter or add_action. For example take a look in the following … Read more
Is there an action_hook or something similar that could help me achieve this? I tried adding markup in a PHP string variable and … Read more