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