category_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( 'category_term_new_form_tag', 'wp_kama_category_term_new_form_tag_action' );

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

	// action...
}

Changelog

Since 3.7.0 Introduced.

Where the hook is called

In file: /wp-admin/edit-tags.php
category_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.