load-edit-tags.php
The WordPress Core load edit tags php hook.
Description
do_action( 'load-edit-tags.php' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'load-edit-tags.php' );
- The following example is for adding a hook callback.
- // define the load-edit-tags.php callback
- function action_load_edit_tags_php( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'load-edit-tags.php', 'action_load_edit_tags_php', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'load-edit-tags.php', 'action_load_edit_tags_php', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/admin.php
- do_action( 'load-edit-tags.php' );