(taxonomy)_term_edit_form_tag action-hookWP 3.7.0

Fires inside the Edit Term form tag.

The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.

Possible hook names include:

Usage

add_action( '(taxonomy)_term_edit_form_tag', 'wp_kama_taxonomy_term_edit_form_tag_action' );

/**
 * Function for `(taxonomy)_term_edit_form_tag` action-hook.
 * 
 * @return void
 */
function wp_kama_taxonomy_term_edit_form_tag_action(){

	// action...
}

Changelog

Since 3.7.0 Introduced.

Where the hook is called

In file: /wp-admin/edit-tag-form.php
(taxonomy)_term_edit_form_tag
wp-admin/edit-tag-form.php 113
do_action( "{$taxonomy}_term_edit_form_tag" );

Where the hook is used in WordPress

Usage not found.