wp_print_styles
The WordPress Core wp print styles 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_styles', $array, $int );
- The following example is for adding a hook callback.
- // define the wp_print_styles callback
- function action_wp_print_styles( $array, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_print_styles', 'action_wp_print_styles', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_print_styles', 'action_wp_print_styles', 10, 2 );
Defined (3)
The action is defined in the following location(s).
- /class.jetpack.php
- add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
- /modules/widgets/goodreads.php
- add_action( 'wp_print_styles', array( $this, 'enqueue_style' ) );
- /modules/widgets/googleplus-badge.php
- add_action( 'wp_print_styles', array( $this, 'enqueue_script' ) );