返回介绍

get_pending_comments_num()

发布于 2017-09-10 23:46:14 字数 2662 浏览 1168 评论 0 收藏 0

get_pending_comments_num( int|array $post_id )

Get the number of pending comments on a post or posts


description


参数

$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;
}

更新日志

Versiondescription
2.3.0Introduced.

相关函数

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()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文