(taxonomy)_term_new_form_tag хук-событиеWP 3.7.0

Fires inside the Add Tag form tag.

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

Possible hook names include:

Использование

add_action( '(taxonomy)_term_new_form_tag', 'wp_kama_taxonomy_term_new_form_tag_action' );

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

	// action...
}

Список изменений

С версии 3.7.0 Введена.

Где вызывается хук

В файле: /wp-admin/edit-tags.php
(taxonomy)_term_new_form_tag
wp-admin/edit-tags.php 450
do_action( "{$taxonomy}_term_new_form_tag" );

Где используется хук в WordPress

Использование не найдено.