Add missing parameter descriptions to the `created_term` hook documentation.
Props dlh. Fixes #32276. Built from https://develop.svn.wordpress.org/trunk@32450 git-svn-id: http://core.svn.wordpress.org/trunk@32420 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9c7a8b386d
commit
948186df0b
|
@ -3036,8 +3036,12 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) {
|
|||
* Fires after a new term is created, and after the term cache has been cleaned.
|
||||
*
|
||||
* @since 2.3.0
|
||||
*
|
||||
* @param int $term_id Term ID.
|
||||
* @param int $tt_id Term taxonomy ID.
|
||||
* @param string $taxonomy Taxonomy slug.
|
||||
*/
|
||||
do_action( "created_term", $term_id, $tt_id, $taxonomy );
|
||||
do_action( 'created_term', $term_id, $tt_id, $taxonomy );
|
||||
|
||||
/**
|
||||
* Fires after a new term in a specific taxonomy is created, and after the term
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32442';
|
||||
$wp_version = '4.3-alpha-32450';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue