post_tag_term_new_form_tag action-hookWP 3.7.0

Fires inside the Add Tag form tag.

This is one of the variants of the dynamic hook (taxonomy)_term_new_form_tag

Usage

add_action( 'post_tag_term_new_form_tag', 'wp_kama_post_tag_term_new_form_action' );

/**
 * Function for `post_tag_term_new_form_tag` action-hook.
 * 
 * @return void
 */
function wp_kama_post_tag_term_new_form_action(){

	// action...
}

Changelog

Since 3.7.0 Introduced.

Where the hook is called

In file: /wp-admin/edit-tags.php
post_tag_term_new_form_tag
wp-admin/edit-tags.php 450
do_action( "{$taxonomy}_term_new_form_tag" );

Where the hook is used in WordPress

Usage not found.