wp_print_styles( string|bool|array $handles = false )

Display styles that are in the $handles queue.


Description Description

Passing an empty array to $handles prints the queue, passing an array with one string prints that style, and passing an array of strings prints those styles.


Parameters Parameters

$handles

(string|bool|array) (Optional) Styles to be printed. Default 'false'.

Default value: false


Top ↑

Return Return

(array) On success, a processed array of WP_Dependencies items; otherwise, an empty array.


Top ↑

Source Source

File: wp-includes/functions.wp-styles.php

function wp_print_styles( $handles = false ) {
	if ( '' === $handles ) { // for wp_head
		$handles = false;
	}
	/**
	 * Fires before styles in the $handles queue are printed.
	 *
	 * @since 2.6.0
	 */
	if ( ! $handles ) {
		do_action( 'wp_print_styles' );
	}

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );

	global $wp_styles;
	if ( ! ( $wp_styles instanceof WP_Styles ) ) {
		if ( ! $handles ) {
			return array(); // No need to instantiate if nothing is there.
		}
	}

	return wp_styles()->do_items( $handles );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.