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 |
---|---|
383 | if ( $block ) // a plugin has already blocked... we'll let that decision stand |
384 | return $block; |
385 | if ( ($time_newcomment - $time_lastcomment) < 15 ) |
386 | return true; |
387 | return false; |
388 | } |
389 |
|
390 |
|
391 | function wp_new_comment( $commentdata ) { |
392 | $commentdata = apply_filters('preprocess_comment', $commentdata); |
393 |
|
394 | $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID']; |
395 | $commentdata['user_ID'] = (int) $commentdata['user_ID']; |
396 |
|
397 | $commentdata['comment_author_IP'] = preg_replace( '/[^0-9., ]/', '',$_SERVER['REMOTE_ADDR'] ); |
398 | $commentdata['comment_agent'] = $_SERVER['HTTP_USER_AGENT']; |
399 |
|
400 | $commentdata['comment_date'] = current_time('mysql'); |
401 | $commentdata['comment_date_gmt'] = current_time('mysql', 1); |