Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_tag_form

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
492 } else {
493      /**
494       * Fires at the end of the Add Tag form.
495       *
496       * @since 2.7.0
497       * @deprecated 3.0.0 Use {$taxonomy}_add_form instead.
498       *
499       * @param string $taxonomy The taxonomy slug.
500       */
501      do_action( 'add_tag_form', $taxonomy );
502 }
503
504 /**
505  * Fires at the end of the Add Term form for all taxonomies.
506  *
507  * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
508  *
509  * @since 3.0.0
510  *