Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: preprocess_comment

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
371      if ( $block ) // a plugin has already blocked... we'll let that decision stand
372           return $block;
373      if ( ($time_newcomment - $time_lastcomment) < 15 )
374           return true;
375      return false;
376 }
377
378
379 function wp_new_comment( $commentdata ) {
380      $commentdata = apply_filters('preprocess_comment', $commentdata);
381
382      $commentdata['comment_post_ID'] = (int) $commentdata['comment_post_ID'];
383      $commentdata['user_ID']         = (int) $commentdata['user_ID'];
384
385      $commentdata['comment_author_IP'] = preg_replace( '/[^0-9., ]/', '',$_SERVER['REMOTE_ADDR'] );
386      $commentdata['comment_agent']     = $_SERVER['HTTP_USER_AGENT'];
387
388      $commentdata['comment_date']     = current_time('mysql');
389      $commentdata['comment_date_gmt'] = current_time('mysql', 1);