Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: registered_taxonomy

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
488      /**
489       * Fires after a taxonomy is registered.
490       *
491       * @since 3.3.0
492       *
493       * @param string       $taxonomy    Taxonomy slug.
494       * @param array|string $object_type Object type or array of object types.
495       * @param array        $args        Array of taxonomy registration arguments.
496       */
497      do_action( 'registered_taxonomy', $taxonomy, $object_type, (array) $taxonomy_object );
498
499      return $taxonomy_object;
500 }
501
502 /**
503  * Unregisters a taxonomy.
504  *
505  * Can not be used to unregister built-in taxonomies.
506  *