post_comment_status_meta_box-options
Fires at the end of the Discussion meta box on the post editing screen.
Description
Parameters (1)
- 0. $post (WP_Post)
-
WP_Post
object of the current post.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'post_comment_status_meta_box-options', $post );
- The following example is for adding a hook callback.
- // define the post_comment_status_meta_box-options callback
- function action_post_comment_status_meta_box_options( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'post_comment_status_meta_box-options', 'action_post_comment_status_meta_box_options', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'post_comment_status_meta_box-options', 'action_post_comment_status_meta_box_options', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/meta-boxes.php
- do_action( 'post_comment_status_meta_box-options', $post );