Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_comment_author_url

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

This hook occurs 2 times in this file.

Line Code
567            * Filter the comment author's URL cookie before it is set.
568            *
569            * When this filter hook is evaluated in wp_filter_comment(),
570            * the comment author's URL string is passed.
571            *
572            * @since 1.5.0
573            *
574            * @param string $author_url_cookie The comment author URL cookie.
575            */
576           $comment_author_url = apply_filters( 'pre_comment_author_url', $_COOKIE['comment_author_url_' . COOKIEHASH] );
577           $comment_author_url = wp_unslash($comment_author_url);
578           $_COOKIE['comment_author_url_'.COOKIEHASH] = $comment_author_url;
579      }
580 }
581
582 /**
583  * Validates whether this comment is allowed to be made.
584  *
585  * @since 2.0.0
 
Line Code
1667      /**
1668       * Filter the comment author's IP before it is set.
1669       *
1670       * @since 1.5.0
1671       *
1672       * @param string $comment_author_ip The comment author's IP.
1673       */
1674      $commentdata['comment_author_IP'] = apply_filters( 'pre_comment_user_ip', $commentdata['comment_author_IP'] );
1675      /** This filter is documented in wp-includes/comment.php */
1676      $commentdata['comment_author_url'] = apply_filters( 'pre_comment_author_url', $commentdata['comment_author_url'] );
1677      /** This filter is documented in wp-includes/comment.php */
1678      $commentdata['comment_author_email'] = apply_filters( 'pre_comment_author_email', $commentdata['comment_author_email'] );
1679      $commentdata['filtered'] = true;
1680      return $commentdata;
1681 }
1682
1683 /**
1684  * Whether a comment should be blocked because of comment flood.
1685  *