publish_to_trash
Fires when a post is transitioned from one status to another.
The dynamic portions of the hook name, $new_status and $old_status, refer to the old and new post statuses, respectively.
This is one of the variants of the dynamic hook (old_status)_to_(new_status)
Usage
add_action( 'publish_to_trash', 'wp_kama_publish_to_trash_action' );
/**
* Function for `publish_to_trash` action-hook.
*
* @param WP_Post $post Post object.
*
* @return void
*/
function wp_kama_publish_to_trash_action( $post ){
// action...
}
- $post(WP_Post)
- Post object.
Changelog
| Since 2.3.0 | Introduced. |
Where the hook is called
publish_to_trash
wp-includes/post.php 5843
do_action( "{$old_status}_to_{$new_status}", $post );