Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_blacklist_check

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
1226       * @since 1.5.0
1227       *
1228       * @param string $author     Comment author.
1229       * @param string $email      Comment author's email.
1230       * @param string $url        Comment author's URL.
1231       * @param string $comment    Comment content.
1232       * @param string $user_ip    Comment author's IP address.
1233       * @param string $user_agent Comment author's browser user agent.
1234       */
1235      do_action( 'wp_blacklist_check', $author, $email, $url, $comment, $user_ip, $user_agent );
1236
1237      $mod_keys = trim( get_option( 'blacklist_keys' ) );
1238      if ( '' == $mod_keys ) {
1239           return false; // If moderation keys are empty
1240      }
1241
1242      // Ensure HTML tags are not being used to bypass the blacklist.
1243      $comment_without_html = wp_strip_all_tags( $comment );
1244