post_submitbox_misc_actions хук-событие . WP 2.9.0
Fires after the post time/date setting in the Publish meta box.
Использование
add_action( 'post_submitbox_misc_actions', 'action_function_name_4698' ); function action_function_name_4698( $post ){ // action... }
- $post(WP_Post)
- WP_Post object for the current post.
Список изменений
С версии 2.9.0 | Введена. |
С версии 4.4.0 | Added the $post parameter. |
Где вызывается хук
wp-admin/includes/meta-boxes.php 312
do_action( 'post_submitbox_misc_actions', $post );