Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$taxonomy}_term_new_form_tag

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
421 <form id="addtag" method="post" action="edit-tags.php" class="validate"
422      <?php
423      /**
424       * Fires inside the Add Tag form tag.
425       *
426       * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
427       *
428       * @since 3.7.0
429       */
430      do_action( "{$taxonomy}_term_new_form_tag" );
431      ?>
432 >
433 <input type="hidden" name="action" value="add-tag" />
434 <input type="hidden" name="screen" value="<?php echo esc_attr( $current_screen->id ); ?>" />
435 <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
436 <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" />
437      <?php wp_nonce_field( 'add-tag', '_wpnonce_add-tag' ); ?>
438
439 <div class="form-field form-required term-name-wrap">