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
896  * @param string $author The author of the comment
897  * @param string $email The email of the comment
898  * @param string $url The url used in the comment
899  * @param string $comment The comment content
900  * @param string $user_ip The comment author IP address
901  * @param string $user_agent The author's browser user agent
902  * @return bool True if comment contains blacklisted content, false if comment does not
903  */
904 function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_agent) {
905      do_action('wp_blacklist_check', $author, $email, $url, $comment, $user_ip, $user_agent);
906
907      $mod_keys = trim( get_option('blacklist_keys') );
908      if ( '' == $mod_keys )
909           return false; // If moderation keys are empty
910      $words = explode("\n", $mod_keys );
911
912      foreach ( (array) $words as $word ) {
913           $word = trim($word);
914