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
434      /**
435       * Fires after a taxonomy is registered.
436       *
437       * @since 3.3.0
438       *
439       * @param string       $taxonomy    Taxonomy slug.
440       * @param array|string $object_type Object type or array of object types.
441       * @param array        $args        Array of taxonomy registration arguments.
442       */
443      do_action( 'registered_taxonomy', $taxonomy, $object_type, (array) $taxonomy_object );
444 }
445
446 /**
447  * Unregisters a taxonomy.
448  *
449  * Can not be used to unregister built-in taxonomies.
450  *
451  * @since 4.5.0
452  *