Detect type of post status transition

If not, how do I tie multiple hooks to the same action? Do I just list
them like so:

add_action('new_to_publish', 'save_new_post', 10, 1);
add_action('future_to_publish', 'save_new_post', 10, 1);
add_action('draft_to_publish', 'save_new_post', 10, 1);

This is exactly the way to go. Just hook the same callback into each of the status-transition hooks on which you want the callback to fire.

Leave a Comment