jetpack_module_configuration_load_<configure>
Fires when a module configuration page is loaded.
Description
do_action( 'jetpack_module_configuration_load_<configure>' );
The dynamic part of the hook is the configure parameter from the URL.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_module_configuration_load_{$configure}' );
- The following example is for adding a hook callback.
- // define the jetpack_module_configuration_load_<configure> callback
- function action_jetpack_module_configuration_load_configure( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "jetpack_module_configuration_load_{$configure}", 'action_jetpack_module_configuration_load_configure', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "jetpack_module_configuration_load_{$configure}", 'action_jetpack_module_configuration_load_configure', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /class.jetpack.php
- do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );