post_tag_edit_form
Fires at the end of the Edit Term form for all taxonomies.
Это один из вариантов динамического хука (taxonomy)_edit_form
Использование
add_action( 'post_tag_edit_form', 'wp_kama_post_tag_edit_form_action', 10, 2 ); /** * Function for `post_tag_edit_form` action-hook. * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current taxonomy slug. * * @return void */ function wp_kama_post_tag_edit_form_action( $tag, $taxonomy ){ // action... }
- $tag(WP_Term)
- Current taxonomy term object.
- $taxonomy(строка)
- Current taxonomy slug.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
В файле: /wp-admin/edit-tag-form.php
post_tag_edit_form
wp-admin/edit-tag-form.php 291
do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );