get_pending_comments_num( int|array $post_id )
Get the number of pending comments on a post or posts
描述
参数
- $post_id
-
(int|array)
(Required)
Either a single Post ID or an array of Post IDs
返回值
(int|array) Either a single Posts pending comments as an int or an array of ints keyed on the Post IDs
源代码
File: wp-admin/includes/comment.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;
}
更新日志
Version | 描述 |
---|---|
2.3.0 | Introduced. |
相关函数
Uses
-
wp-includes/functions.php:
absint() -
wp-includes/wp-db.php:
wpdb::get_results()
Used By
-
wp-admin/includes/class-wp-media-list-table.php:
WP_Media_List_Table::column_comments() -
wp-admin/includes/class-wp-media-list-table.php:
WP_Media_List_Table::display_rows() -
wp-admin/includes/class-wp-comments-list-table.php:
WP_Comments_List_Table::column_response() -
wp-admin/includes/class-wp-comments-list-table.php:
WP_Comments_List_Table::prepare_items() -
wp-admin/includes/class-wp-posts-list-table.php:
WP_Posts_List_Table::_display_rows()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈