draft_to_publish
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.
Это один из вариантов динамического хука (old_status)_to_(new_status)
Использование
add_action( 'draft_to_publish', 'wp_kama_draft_to_publish_action' ); /** * Function for `draft_to_publish` action-hook. * * @param WP_Post $post Post object. * * @return void */ function wp_kama_draft_to_publish_action( $post ){ // action... }
- $post(WP_Post)
- Post object.
Список изменений
С версии 2.3.0 | Введена. |
Где вызывается хук
draft_to_publish
wp-includes/post.php 5708
do_action( "{$old_status}_to_{$new_status}", $post );