wp-includes/script-loader.php:2357Prints the styles that were queued too late for the HTML head.
array|voidOne hook fires while print_late_styles() runs, in this order:
Filters whether to print the styles queued too late for the HTML head.
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;}Introduced in 3.3.0. 2 changes between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
string[]|void to string[]|null.verified against sourcearray|void to string[]|void.verified against sourcesrc/wp-includes/script-loader.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.