edit_tag_form_fields action-hook . WP 2.9.0
Deprecated in from version 3.0.0. It is no longer supported and can be removed in future releases. See {$taxonomy}_edit_form_fields
.
Deprecated: 3.0.0 Use {@see '{$taxonomy}_edit_form_fields'} instead.
Fires after the Edit Tag form fields are displayed.
Usage
add_action( 'edit_tag_form_fields', 'action_function_name_6362', 10, 3 ); function action_function_name_6362( $tag, $string, $string ){ // action... }
- $tag(WP_Term)
- Current tag term object.
- $string
- -
- $string
- -
Changelog
Since 2.9.0 | Introduced. | |
Deprecated Since 3.0.0 | Use {@see '{$taxonomy}_edit_form_fields'} instead. |
Where the hook is called
In file: /wp-admin/edit-tag-form.php
edit_tag_form_fields
wp-admin/edit-tag-form.php 224
do_action_deprecated( 'edit_tag_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );