(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:
Использование
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... }
Список изменений
С версии 3.7.0 | Введена. |
Где вызывается хук
В файле: /wp-admin/edit-tag-form.php
(taxonomy)_term_edit_form_tag
wp-admin/edit-tag-form.php 109
do_action( "{$taxonomy}_term_edit_form_tag" );