Docs: Correct duplicate hook reference for `get_terms`.

See #33369.

git-svn-id: https://develop.svn.wordpress.org/trunk@35319 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-10-21 07:39:11 +00:00
parent 5bc6ae50ab
commit 892cef6da5
1 changed files with 1 additions and 1 deletions

View File

@ -1510,7 +1510,7 @@ function get_terms( $taxonomies, $args = '' ) {
$terms = array_map( 'get_term', $terms );
}
/** This filter is documented in wp-includes/taxonomy */
/** This filter is documented in wp-includes/taxonomy-functions.php */
return apply_filters( 'get_terms', $terms, $taxonomies, $args );
}