post_submitbox_minor_actions action-hook . WP 4.4.0
Fires before the post time/date setting in the Publish meta box.
Usage
add_action( 'post_submitbox_minor_actions', 'action_function_name_8081' ); function action_function_name_8081( $post ){ // action... }
- $post(WP_Post)
- WP_Post object for the current post.
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
wp-admin/includes/meta-boxes.php 96
do_action( 'post_submitbox_minor_actions', $post );