WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
401 | * @param string $author The author of the comment |
402 | * @param string $email The email of the comment |
403 | * @param string $url The url used in the comment |
404 | * @param string $comment The comment content |
405 | * @param string $user_ip The comment author IP address |
406 | * @param string $user_agent The author's browser user agent |
407 | * @return bool True if comment contains blacklisted content, false if comment does not |
408 | */ |
409 | function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_agent) { |
410 | do_action('wp_blacklist_check', $author, $email, $url, $comment, $user_ip, $user_agent); |
411 |
|
412 | if ( preg_match_all('/&#(\d+);/', $comment . $author . $url, $chars) ) { |
413 | foreach ( (array) $chars[1] as $char ) { |
414 | // If it's an encoded char in the normal ASCII set, reject |
415 | if ( 38 == $char ) |
416 | continue; // Unless it's & |
417 | if ( $char < 128 ) |
418 | return true; |
419 | } |