wp_loaded
The WordPress Core wp loaded hook.
Description
Parameters (2)
- 0. $array (array) =>
array( __CLASS__, 'force_ssl_redirect' )
- The array.
- 1. $int (int) =>
-1000
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_loaded', $array, $int );
- The following example is for adding a hook callback.
- // define the wp_loaded callback
- function action_wp_loaded( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_loaded', 'action_wp_loaded', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_loaded', 'action_wp_loaded', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /lib/filters.php
- add_action( 'wp_loaded', array( __CLASS__, 'force_ssl_redirect' ), -1000 );