Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (10 years ago)
Author:
DrewAPicture
Message:

Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline @see tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.

File:
1 edited

Legend:

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

    r36988 r37342  
    1818 *
    1919 * @param string|array $args {
    20  *     Optional. Arguments to retrieve categories. See {@see get_terms()} for additional options.
     20 *     Optional. Arguments to retrieve categories. See get_terms() for additional options.
    2121 *
    2222 *     @type string $taxonomy Taxonomy to retrieve terms for. In this case, default 'category'.
     
    3131
    3232        /**
    33          * Filter the taxonomy used to retrieve terms when calling {@see get_categories()}.
     33         * Filter the taxonomy used to retrieve terms when calling get_categories().
    3434         *
    3535         * @since 2.7.0
    3636         *
    3737         * @param string $taxonomy Taxonomy to retrieve terms from.
    38          * @param array  $args     An array of arguments. See {@see get_terms()}.
     38         * @param array  $args     An array of arguments. See get_terms().
    3939         */
    4040        $taxonomy = apply_filters( 'get_categories_taxonomy', $taxonomy, $args );
Note: See TracChangeset for help on using the changeset viewer.