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
1 changed files with 3 additions and 3 deletions

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
* @uses $wpdb
*
* @param int $post_id Post ID
* @return unknown
* @param int|array $post_id Either a single Post ID or an array of Post IDs
* @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 ) {
global $wpdb;