Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_reply_to_unapproved_comment

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3494           ) {
3495                /**
3496                 * Fires when a comment reply is attempted to an unapproved comment.
3497                 *
3498                 * @since 6.2.0
3499                 *
3500                 * @param int $comment_post_id Post ID.
3501                 * @param int $comment_parent  Parent comment ID.
3502                 */
3503                do_action( 'comment_reply_to_unapproved_comment', $comment_post_id, $comment_parent );
3504
3505                return new WP_Error( 'comment_reply_to_unapproved_comment', __( 'Sorry, replies to unapproved comments are not allowed.' ), 403 );
3506           }
3507      }
3508
3509      $post = get_post( $comment_post_id );
3510
3511      if ( empty( $post->comment_status ) ) {
3512