widgets_admin_page
Fires before the Widgets administration page content loads.
Description
do_action( 'widgets_admin_page' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'widgets_admin_page' );
- The following example is for adding a hook callback.
- // define the widgets_admin_page callback
- function action_widgets_admin_page( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'widgets_admin_page', 'action_widgets_admin_page', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'widgets_admin_page', 'action_widgets_admin_page', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/widgets.php
- do_action( 'widgets_admin_page' ); ?>