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 |
|---|---|
| 140 | break; |
| 141 | case 'server': |
| 142 | $lastcommentmodified = $wpdb->get_var("SELECT DATE_ADD(comment_date_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->comments WHERE comment_date_gmt <= '$now' ORDER BY comment_date_gmt DESC LIMIT 1"); |
| 143 | break; |
| 144 | } |
| 145 | $cache_lastcommentmodified[$timezone] = $lastcommentmodified; |
| 146 | } else { |
| 147 | $lastcommentmodified = $cache_lastcommentmodified[$timezone]; |
| 148 | } |
| 149 | return $lastcommentmodified; |
| 150 | } |
| 151 | |
| 152 | |
| 153 | function sanitize_comment_cookies() { |
| 154 | if ( isset($_COOKIE['comment_author_'.COOKIEHASH]) ) { |
| 155 | $comment_author = apply_filters('pre_comment_author_name', $_COOKIE['comment_author_'.COOKIEHASH]); |
| 156 | $comment_author = stripslashes($comment_author); |
| 157 | $comment_author = attribute_escape($comment_author); |
| 158 | $_COOKIE['comment_author_'.COOKIEHASH] = $comment_author; |
| 159 | } |
| 160 | |
| 161 | if ( isset($_COOKIE['comment_author_email_'.COOKIEHASH]) ) { |
| 162 | $comment_author_email = apply_filters('pre_comment_author_email', $_COOKIE['comment_author_email_'.COOKIEHASH]); |
| 163 | $comment_author_email = stripslashes($comment_author_email); |
| 164 | $comment_author_email = attribute_escape($comment_author_email); |
| 165 | $_COOKIE['comment_author_email_'.COOKIEHASH] = $comment_author_email; |
| 166 | } |
| 167 | |
| 168 | if ( isset($_COOKIE['comment_author_url_'.COOKIEHASH]) ) { |
| 169 | $comment_author_url = apply_filters('pre_comment_author_url', $_COOKIE['comment_author_url_'.COOKIEHASH]); |
| 170 | $comment_author_url = stripslashes($comment_author_url); |
| Line | Code |
| 344 | ('$comment_post_ID', '$comment_author', '$comment_author_email', '$comment_author_url', '$comment_author_IP', '$comment_date', '$comment_date_gmt', '$comment_content', '$comment_approved', '$comment_agent', '$comment_type', '$comment_parent', '$user_id') |
| 345 | "); |
| 346 | |
| 347 | $id = $wpdb->insert_id; |
| 348 | |
| 349 | if ( $comment_approved == 1) |
| 350 | wp_update_comment_count($comment_post_ID); |
| 351 | |
| 352 | return $id; |
| 353 | } |
| 354 | |
| 355 | |
| 356 | function wp_filter_comment($commentdata) { |
| 357 | $commentdata['user_id'] = apply_filters('pre_user_id', $commentdata['user_ID']); |
| 358 | $commentdata['comment_agent'] = apply_filters('pre_comment_user_agent', $commentdata['comment_agent']); |
| 359 | $commentdata['comment_author'] = apply_filters('pre_comment_author_name', $commentdata['comment_author']); |
| 360 | $commentdata['comment_content'] = apply_filters('pre_comment_content', $commentdata['comment_content']); |
| 361 | $commentdata['comment_author_IP'] = apply_filters('pre_comment_user_ip', $commentdata['comment_author_IP']); |
| 362 | $commentdata['comment_author_url'] = apply_filters('pre_comment_author_url', $commentdata['comment_author_url']); |
| 363 | $commentdata['comment_author_email'] = apply_filters('pre_comment_author_email', $commentdata['comment_author_email']); |
| 364 | $commentdata['filtered'] = true; |
| 365 | return $commentdata; |
| 366 | } |
| 367 | |
| 368 | |
| 369 | function wp_throttle_comment_flood($block, $time_lastcomment, $time_newcomment) { |
| 370 | if ( $block ) // a plugin has already blocked... we'll let that decision stand |
| 371 | return $block; |
| 372 | if ( ($time_newcomment - $time_lastcomment) < 15 ) |
| 373 | return true; |
| 374 | return false; |