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
This commit is contained in:
Andrew Nacin 2012-09-14 16:11:30 +00:00
parent bd6d86d123
commit c1d96d72b4
1 changed files with 1 additions and 1 deletions

View File

@ -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);