i'm writing my first plugin for wordpress and i have some doubts regarding the hooks.

So i want an action to be executed when admin saves a post, and i'm using (inside a class):

add_action( 'save_post', array($this, 'save_post'));
function save_post(){
    global $wp_query;
    var_dump($wp_query);
}

the problem is that it prints the global variable when admin opens the "create a new post" and it doesn't when the user saves a post.
I want it to happen the other way around, but i can't find anything in the docs, and i'm completely alone here.

Any help? thanks

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I think you're looking for the 'publish_post' action. There's also a 'draft_post' if you need it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.