comment_on_draft
Fires when a comment is attempted on a post in draft mode.
Usage
add_action( 'comment_on_draft', 'wp_kama_comment_on_draft_action' );
/**
* Function for `comment_on_draft` action-hook.
*
* @param int $comment_post_id Post ID.
*
* @return void
*/
function wp_kama_comment_on_draft_action( $comment_post_id ){
// action...
}
- $comment_post_id(int)
- Post ID.
Changelog
| Since 1.5.1 | Introduced. |
Where the hook is called
comment_on_draft
wp-includes/comment.php 3708
do_action( 'comment_on_draft', $comment_post_id );