Changeset 30493
- Timestamp:
- 11/21/2014 03:13:20 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r30492 r30493 4126 4126 * @since 4.1.0 4127 4127 * 4128 * @param int $term_id ID of the formerly shared term. 4129 * @param int $new_term_id ID of the new term created for the $term_taxonomy_id. 4130 * @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split. 4131 */ 4132 do_action( 'split_shared_term', $term_id, $new_term_id, $term_taxonomy_id ); 4128 * @param int $term_id ID of the formerly shared term. 4129 * @param int $new_term_id ID of the new term created for the $term_taxonomy_id. 4130 * @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split. 4131 * @param string $taxonomy Taxonomy for the split term. 4132 */ 4133 do_action( 'split_shared_term', $term_id, $new_term_id, $term_taxonomy_id, $term_taxonomy->taxonomy ); 4133 4134 4134 4135 return $new_term_id;
Note: See TracChangeset
for help on using the changeset viewer.