wp-includes/script-loader.php:2323Prints the styles queue in the HTML head on admin pages.
string[]One hook fires while print_admin_styles() runs, in this order:
Filters whether to print the admin styles.
function print_admin_styles() { global $concatenate_scripts; $wp_styles = wp_styles(); script_concat_settings(); $wp_styles->do_concat = $concatenate_scripts; $wp_styles->do_items( false ); /** * Filters whether to print the admin styles. * * @since 2.8.0 * * @param bool $print Whether to print the admin styles. Default true. */ if ( apply_filters( 'print_admin_styles', true ) ) { _print_styles(); } $wp_styles->reset(); return $wp_styles->done;}Introduced in 2.8.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
array to string[].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.