template_redirect
Initializes the Customizer preview.
Description
Parameters (2)
- 0. $array (callback) =>
array( $this, 'cleanup_wpseo_filters' )
- The array.
- 1. $int (int) =>
9999
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'template_redirect', $array, $int );
- The following example is for adding a hook callback.
- // define the template_redirect callback
- function action_template_redirect( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'template_redirect', 'action_template_redirect', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'template_redirect', 'action_template_redirect', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /lib/check.php
- add_action( 'template_redirect', array( $this, 'cleanup_wpseo_filters' ), 9999 );