From 74409485148cf957015cd6ed5c47343e0da4bf62 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 11 Nov 2010 17:02:14 +0000 Subject: [PATCH] phpdoc fixes. Props hakre. fixes #12526 git-svn-id: http://svn.automattic.com/wordpress/trunk@16307 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 911f408cd..d2e6dceaa 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -229,8 +229,6 @@ function get_the_category_list( $separator = '', $parents='', $post_id = false ) * * @since 1.2.0 * - * @uses has_term() - * * @param int|string|array $category Category ID, name or slug, or array of said. * @param int|object $_post Optional. Post to check instead of the current post. (since 2.7.0) * @return bool True if the current post is in any of the given categories. @@ -1127,8 +1125,6 @@ function the_terms( $id = 0, $taxonomy, $before = '', $sep = ', ', $after = '' ) * * @since 3.1.0 * - * @uses has_term() - * * @param string|int|array $tag Optional. The category name/term_id/slug or array of them to check for. * @param int|object $post Optional. Post to check instead of the current post. * @return bool True if the current post has any of the given categories (or any category, if no category specified). @@ -1150,8 +1146,6 @@ function has_category( $category = '', $post = null ) { * * @since 2.6.0 * - * @uses has_term() - * * @param string|int|array $tag Optional. The tag name/term_id/slug or array of them to check for. * @param int|object $post Optional. Post to check instead of the current post. (since 2.7.0) * @return bool True if the current post has any of the given tags (or any tag, if no tag specified). @@ -1169,11 +1163,9 @@ function has_tag( $tag = '', $post = null ) { * * @since 3.1.0 * - * @uses is_object_in_term() - * * @param string|int|array $term Optional. The term name/term_id/slug or array of them to check for. + * @param string $taxonomy Taxonomy name * @param int|post object Optional. Post to check instead of the current post. - * @since 2.7.0 * @return bool True if the current post has any of the given tags (or any tag, if no tag specified). */ function has_term( $term = '', $taxonomy = '', $post = null ) {