Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_wp_update_comment_count_now

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
2319      /**
2320       * Filters a post's comment count before it is updated in the database.
2321       *
2322       * @since 4.5.0
2323       *
2324       * @param int $new     The new comment count. Default null.
2325       * @param int $old     The old comment count.
2326       * @param int $post_id Post ID.
2327       */
2328      $new = apply_filters( 'pre_wp_update_comment_count_now', null, $old, $post_id );
2329
2330      if ( is_null( $new ) ) {
2331           $new = (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1'", $post_id ) );
2332      } else {
2333           $new = (int) $new;
2334      }
2335
2336      $wpdb->update( $wpdb->posts, array('comment_count' => $new), array('ID' => $post_id) );
2337