wp_print_scripts
Fires before scripts in the $handles queue are printed.
Description
Parameters (2)
- 0. $ga_external_tracking_js (string) =>
'ga_external_tracking_js'
- The ga external tracking js.
- 1. $int (int) =>
99999
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_print_scripts', $ga_external_tracking_js, $int );
- The following example is for adding a hook callback.
- // define the wp_print_scripts callback
- function action_wp_print_scripts( $ga_external_tracking_js, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_print_scripts', 'action_wp_print_scripts', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_print_scripts', 'action_wp_print_scripts', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /google-analyticator.php
- add_action('wp_print_scripts', 'ga_external_tracking_js', 99999);