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 |
---|---|
1355 | * @since 5.5.0 |
1356 | * |
1357 | * @param string $author Comment author. |
1358 | * @param string $email Comment author's email. |
1359 | * @param string $url Comment author's URL. |
1360 | * @param string $comment Comment content. |
1361 | * @param string $user_ip Comment author's IP address. |
1362 | * @param string $user_agent Comment author's browser user agent. |
1363 | */ |
1364 | do_action( 'wp_check_comment_disallowed_list', $author, $email, $url, $comment, $user_ip, $user_agent ); |
1365 |
|
1366 | $mod_keys = trim( get_option( 'disallowed_keys' ) ); |
1367 | if ( '' === $mod_keys ) { |
1368 | return false; // If moderation keys are empty. |
1369 | } |
1370 |
|
1371 | // Ensure HTML tags are not being used to bypass the list of disallowed characters and words. |
1372 | $comment_without_html = wp_strip_all_tags( $comment ); |
1373 |
|