From 254ff0a4c932b78184c7bdf80c5006e8bdb97d15 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 17 Nov 2014 17:37:23 +0000 Subject: [PATCH] Add inline `@see` tags to the docs for the `get_categories_taxonomy` hook. Props tw2113. Fixes #30310. Built from https://develop.svn.wordpress.org/trunk@30370 git-svn-id: http://core.svn.wordpress.org/trunk@30368 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/category.php b/wp-includes/category.php index db178432bf..6d2ad99319 100644 --- a/wp-includes/category.php +++ b/wp-includes/category.php @@ -24,13 +24,14 @@ function get_categories( $args = '' ) { $args = wp_parse_args( $args, $defaults ); $taxonomy = $args['taxonomy']; + /** - * Filter the taxonomy used to retrieve terms when calling get_categories(). + * Filter the taxonomy used to retrieve terms when calling {@see get_categories()}. * * @since 2.7.0 * * @param string $taxonomy Taxonomy to retrieve terms from. - * @param array $args An array of arguments. @see get_terms() + * @param array $args An array of arguments. See {@see get_terms()}. */ $taxonomy = apply_filters( 'get_categories_taxonomy', $taxonomy, $args );