You appear to be a bot. Output may be restricted
Description
Allow CSS to be concatenated into a single jetpack.css file.
Usage
Jetpack::concat_remove_style_loader_tag( $tag, $handle );
Parameters
- $tag
- ( mixed ) required –
- $handle
- ( mixed ) required –
Returns
void
Source
File name: jetpack/class.jetpack.php
Lines:
1 to 10 of 10
function concat_remove_style_loader_tag( $tag, $handle ) { if ( in_array( $handle, $this->concatenated_style_handles ) ) { $tag = ''; if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { $tag = '<!-- `' . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n"; } } return $tag; }