get_pending_comments_num [ WordPress Function ]
get_pending_comments_num ( $post_id )
| Parameters: |
|
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: get_edit_comment_link, get_comments_number, get_previous_comments_link, get_approved_comments, get_next_comments_link
Get the number of pending comments on a post or posts
Source
<?php
function get_pending_comments_num( $post_id ) {
global $wpdb;
$single = false;
if ( !is_array($post_id) ) {
$post_id_array = (array) $post_id;
$single = true;
} else {
$post_id_array = $post_id;
}
$post_id_array = array_map('intval', $post_id_array);
$post_id_in = "'" . implode("', '", $post_id_array) . "'";
$pending = $wpdb->get_results( "SELECT comment_post_ID, COUNT(comment_ID) as num_comments FROM $wpdb->comments WHERE comment_post_ID IN ( $post_id_in ) AND comment_approved = '0' GROUP BY comment_post_ID", ARRAY_A );
if ( $single ) {
if ( empty($pending) )
return 0;
else
return absint($pending[0]['num_comments']);
}
$pending_keyed = array();
// Default to zero pending for all posts in request
foreach ( $post_id_array as $id )
$pending_keyed[$id] = 0;
if ( !empty($pending) )
foreach ( $pending as $pend )
$pending_keyed[$pend['comment_post_ID']] = absint($pend['num_comments']);
return $pending_keyed;
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- #15961 (WP_Comments_List_Table causes - WordPress Trac
WP_Comments_List_Table causes get_pending_comments_num to run a lame query ... We then call get_pending_comments_num with this array of ids.
core.trac.wordpress.org - get_pending_comments_num | A HitchHackers guide through ...
Feb 12, 2011 ... function get_pending_comments_num( $post_id ) { global $wpdb; $single = false ; if ( !is_array($post_id) ) { $post_id_array = (array) $post_id; ...
hitchhackerguide.com - get_pending_comments_num
Function and Method Cross Reference. get_pending_comments_num(). Defined at: /wp-admin/includes/comment.php -> line 96. Referenced 4 times: ...
phpxref.ftwr.co.uk - get_pending_comments_num (WordPress Function) - WPSeek.com
WordPress lookup for get_pending_comments_num, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com