Changeset 53126 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 04/11/2022 05:09:53 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r53058 r53126 529 529 */ 530 530 do_action( 'registered_taxonomy', $taxonomy, $object_type, (array) $taxonomy_object ); 531 532 /** 533 * Fires after a specific taxonomy is registered. 534 * 535 * The dynamic portion of the filter name, `$taxonomy`, refers to the taxonomy key. 536 * 537 * @since 6.0.0 538 * 539 * @param string $taxonomy Taxonomy slug. 540 * @param array|string $object_type Object type or array of object types. 541 * @param array $args Array of taxonomy registration arguments. 542 */ 543 do_action( "registered_taxonomy_{$taxonomy}", $taxonomy, $object_type, (array) $taxonomy_object ); 531 544 532 545 return $taxonomy_object;
Note: See TracChangeset
for help on using the changeset viewer.