From c1d96d72b49d631f75a68302fca45dd86d6e0f60 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 14 Sep 2012 16:11:30 +0000 Subject: [PATCH] Update docs to reflect that wp_count_terms() can return WP_Error when the taxonomy does not exist. props SergeyBiryukov, fixes #21888. git-svn-id: https://develop.svn.wordpress.org/trunk@21843 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index e8485d4665..c28bef68d6 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -1681,7 +1681,7 @@ function sanitize_term_field($field, $value, $term_id, $taxonomy, $context) { * * @param string $taxonomy Taxonomy name * @param array|string $args Overwrite defaults. See get_terms() - * @return int How many terms are in $taxonomy + * @return int|WP_Error How many terms are in $taxonomy. WP_Error if $taxonomy does not exist. */ function wp_count_terms( $taxonomy, $args = array() ) { $defaults = array('hide_empty' => false);