<taxonomy>_edit_form_fields
Fires after the Edit Term form fields are displayed.
Description
The dynamic portion(s) of the hook name refer to the taxonomy slug.
Parameters (2)
- 0. $tag (object)
- Current taxonomy term object.
- 1. $taxonomy (string)
- Current taxonomy slug.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( '{$taxonomy}_edit_form_fields', $tag, $taxonomy );
- The following example is for adding a hook callback.
- // define the <taxonomy>_edit_form_fields callback
- function action_taxonomy_edit_form_fields( $tag, $taxonomy ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$taxonomy}_edit_form_fields", 'action_taxonomy_edit_form_fields', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$taxonomy}_edit_form_fields", 'action_taxonomy_edit_form_fields', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-tag-form.php
- do_action( "{$taxonomy}_edit_form_fields", $tag, $taxonomy );