wp_print_footer_scripts
The WordPress Core wp print footer scripts hook.
Description
Parameters (2)
- 0. $array (callback) =>
array( $this, 'implode_frontend_css' )
- The array.
- 1. $int (int) =>
-1
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_print_footer_scripts', $array, $int );
- The following example is for adding a hook callback.
- // define the wp_print_footer_scripts callback
- function action_wp_print_footer_scripts( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_print_footer_scripts', 'action_wp_print_footer_scripts', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_print_footer_scripts', 'action_wp_print_footer_scripts', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /class.jetpack.php
- add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`