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
611  * @param string $author The author of the comment
612  * @param string $email The email of the comment
613  * @param string $url The url used in the comment
614  * @param string $comment The comment content
615  * @param string $user_ip The comment author IP address
616  * @param string $user_agent The author's browser user agent
617  * @return bool True if comment contains blacklisted content, false if comment does not
618  */
619 function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_agent) {
620      do_action('wp_blacklist_check', $author, $email, $url, $comment, $user_ip, $user_agent);
621
622      if ( preg_match_all('/&#(\d+);/', $comment . $author . $url, $chars) ) {
623           foreach ( (array) $chars[1] as $char ) {
624                // If it's an encoded char in the normal ASCII set, reject
625                if ( 38 == $char )
626                     continue; // Unless it's &
627                if ( $char < 128 )
628                     return true;
629           }