Make WordPress Core


Ignore:
Timestamp:
11/17/2014 05:36:17 PM (10 years ago)
Author:
DrewAPicture
Message:

Add inline @see tags to the docs for the get_categories_taxonomy hook.

Props tw2113.
Fixes #30310.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/category.php

    r30105 r30370  
    2525
    2626    $taxonomy = $args['taxonomy'];
     27
    2728    /**
    28      * Filter the taxonomy used to retrieve terms when calling get_categories().
     29     * Filter the taxonomy used to retrieve terms when calling {@see get_categories()}.
    2930     *
    3031     * @since 2.7.0
    3132     *
    3233     * @param string $taxonomy Taxonomy to retrieve terms from.
    33      * @param array  $args     An array of arguments. @see get_terms()
     34     * @param array  $args     An array of arguments. See {@see get_terms()}.
    3435     */
    3536    $taxonomy = apply_filters( 'get_categories_taxonomy', $taxonomy, $args );
Note: See TracChangeset for help on using the changeset viewer.