(taxonomy)_add_form_fields action-hook . WP 3.0.0
Fires after the Add Term form fields.
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
Usage
add_action( '(taxonomy)_add_form_fields', 'action_function_name_2693' ); function action_function_name_2693( $taxonomy ){ // action... }
- $taxonomy(string)
- The taxonomy slug.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-tags.php
(taxonomy)_add_form_fields
wp-admin/edit-tags.php 529
do_action( "{$taxonomy}_add_form_fields", $taxonomy );