print_late_styles

Definition:
function print_late_styles() {}

Prints the styles that were queued too late for the HTML head.

Defined filters

  • print_late_styles
    apply_filters('print_late_styles', true)

Source code

function print_late_styles() {

	global $wp_styles, $concatenate_scripts;



	if ( !is_a($wp_styles, 'WP_Styles') )

		return;



	$wp_styles->do_concat = $concatenate_scripts;

	$wp_styles->do_footer_items();



	if ( apply_filters('print_late_styles', true) )

		_print_styles();



	$wp_styles->reset();

	return $wp_styles->done;

}

16904

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: