style_loader_tag
Filters the HTML link tag of an enqueued style.
Description
Parameters (3)
- 0. $array (callback) =>
array( 'Jetpack', 'maybe_inline_style' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'style_loader_tag', $array, $int, $int );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the style_loader_tag callback
- function filter_style_loader_tag( $array, $int, $int ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'style_loader_tag', 'filter_style_loader_tag', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'style_loader_tag', 'filter_style_loader_tag', 10, 3 );
Defined (2)
The filter is defined in the following location(s).
- /class.jetpack.php
- add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
- add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );