wpseek.com
A WordPress-centric search engine for devs and theme authors
print_late_styles › WordPress Function
Since3.3.0
Deprecatedn/a
› print_late_styles ( No parameters )
Returns: |
|
Defined at: |
|
Codex: |
Prints the styles that were queued too late for the HTML head.
Related Functions: print_emoji_styles, print_admin_styles, print_embed_styles, wp_print_styles, wp_get_layout_style
Source
function print_late_styles() { global $wp_styles, $concatenate_scripts; if ( ! ( $wp_styles instanceof WP_Styles ) ) { return; } script_concat_settings(); $wp_styles->do_concat = $concatenate_scripts; $wp_styles->do_footer_items(); /** * Filters whether to print the styles queued too late for the HTML head. * * @since 3.3.0 * * @param bool $print Whether to print the 'late' styles. Default true. */ if ( apply_filters( 'print_late_styles', true ) ) { _print_styles(); } $wp_styles->reset(); return $wp_styles->done; }