comment_on_draft, $comment_post_id
comment_on_draft, $comment_post_id
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('comment_on_draft, $comment_post_id') is found 1 times:
- /wp-includes/comment.php line 3708
* @since 1.5.1 * * @param int $comment_post_id Post ID. */ do_action( 'comment_on_draft', $comment_post_id ); if ( current_user_can( 'read_post', $comment_post_id ) ) { return new WP_Error( 'comment_on_draft', __( 'Sorry, comments are not allowed for this item.' ), 403 ); } else { return new WP_Error( 'comment_on_draft' ); }