diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php
index 9ddd02c..72ce505 100644
|
|
function register_taxonomy( $taxonomy, $object_type, $args = array() ) { |
393 | 393 | * @param array|string $object_type Object type or array of object types. |
394 | 394 | * @param array $args Array of taxonomy registration arguments. |
395 | 395 | */ |
396 | | do_action( 'registered_taxonomy', $taxonomy, $object_type, $args ); |
| 396 | do_action( 'registered_taxonomy', $taxonomy, $object_type, (array) $taxonomy_object ); |
397 | 397 | } |
398 | 398 | |
399 | 399 | /** |