Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (7 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/taxonomy.php

    r37133 r37342  
    21902190 *
    21912191 * @param string       $taxonomy Taxonomy name.
    2192  * @param array|string $args     Optional. Array of arguments that get passed to {@see get_terms()}.
     2192 * @param array|string $args     Optional. Array of arguments that get passed to get_terms().
    21932193 *                               Default empty array.
    21942194 * @return array|int|WP_Error Number of terms in that taxonomy or WP_Error if the taxonomy does not exist.
     
    26822682     * @param string    $taxonomies SQL-formatted (comma-separated and quoted) list of taxonomy names.
    26832683     * @param array     $args       An array of arguments for retrieving terms for the given object(s).
    2684      *                              See {@see wp_get_object_terms()} for details.
     2684     *                              See wp_get_object_terms() for details.
    26852685     */
    26862686    return apply_filters( 'wp_get_object_terms', $terms, $object_ids, $taxonomies, $args );
     
    27282728 * }
    27292729 * @return array|WP_Error An array containing the `term_id` and `term_taxonomy_id`,
    2730  *                        {@see WP_Error} otherwise.
     2730 *                        WP_Error otherwise.
    27312731 */
    27322732function wp_insert_term( $term, $taxonomy, $args = array() ) {
     
    42084208    }
    42094209
    4210     // Keep a record of term_ids that have been split, keyed by old term_id. See {@see wp_get_split_term()}.
     4210    // Keep a record of term_ids that have been split, keyed by old term_id. See wp_get_split_term().
    42114211    if ( $record ) {
    42124212        $split_term_data = get_option( '_split_terms', array() );
Note: See TracChangeset for help on using the changeset viewer.