phpDoc for get_pending_comments_num().

git-svn-id: http://svn.automattic.com/wordpress/trunk@12595 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2010-01-02 17:15:11 +00:00
parent befa36c379
commit 99709adb4e

View File

@ -96,13 +96,13 @@ function get_comment_to_edit( $id ) {
} }
/** /**
* {@internal Missing Short Description}} * Get the number of pending comments on a post or posts
* *
* @since unknown * @since unknown
* @uses $wpdb * @uses $wpdb
* *
* @param int $post_id Post ID * @param int|array $post_id Either a single Post ID or an array of Post IDs
* @return unknown * @return int|array Either a single Posts pending comments as an int or an array of ints keyed on the Post IDs
*/ */
function get_pending_comments_num( $post_id ) { function get_pending_comments_num( $post_id ) {
global $wpdb; global $wpdb;