<taxonomy>_pre_edit_form
Fires before the Edit Term form for all taxonomies.
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}_pre_edit_form', $tag, $taxonomy );
- The following example is for adding a hook callback.
- // define the <taxonomy>_pre_edit_form callback
- function action_taxonomy_pre_edit_form( $tag, $taxonomy ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$taxonomy}_pre_edit_form", 'action_taxonomy_pre_edit_form', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$taxonomy}_pre_edit_form", 'action_taxonomy_pre_edit_form', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-tag-form.php
- do_action( "{$taxonomy}_pre_edit_form", $tag, $taxonomy ); ?>