Make WordPress Core

Changeset 32450


Ignore:
Timestamp:
05/07/2015 05:25:30 AM (9 years ago)
Author:
DrewAPicture
Message:

Add missing parameter descriptions to the created_term hook documentation.

Props dlh.
Fixes #32276.

File:
1 edited

Legend:

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

    r32353 r32450  
    30373037     *
    30383038     * @since 2.3.0
    3039      */
    3040     do_action( "created_term", $term_id, $tt_id, $taxonomy );
     3039     *
     3040     * @param int    $term_id  Term ID.
     3041     * @param int    $tt_id    Term taxonomy ID.
     3042     * @param string $taxonomy Taxonomy slug.
     3043     */
     3044    do_action( 'created_term', $term_id, $tt_id, $taxonomy );
    30413045
    30423046    /**
Note: See TracChangeset for help on using the changeset viewer.