(taxonomy)_term_edit_form_tag
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 114
do_action( "{$taxonomy}_term_edit_form_tag" );