Make WordPress Core


Ignore:
Timestamp:
07/29/2007 07:56:55 PM (17 years ago)
Author:
matt
Message:

Shows pending moderation comments in title and bold comment numbers with comments that need attention.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/comment.php

    r5757 r5821  
    5959}
    6060
     61function get_pending_comments_num( $post_id ) {
     62    global $wpdb;
     63    $post_id = (int) $post_id;
     64    $pending = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_post_ID = $post_id AND comment_approved = '0'" );
     65    return $pending;
     66}
     67
    6168?>
Note: See TracChangeset for help on using the changeset viewer.