wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_style_is › WordPress Function

Seit2.8.0
Veraltetn/v
wp_style_is ( $handle, $status = 'enqueued' )
Parameter: (2)
  • (string) $handle Name of the stylesheet.
    Erforderlich: Ja
  • (string) $status Optional. Status of the stylesheet to check. Default 'enqueued'. Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'.
    Erforderlich: Nein
    Standard: 'enqueued'
Gibt zurück:
  • (bool) Whether style is queued.
Definiert in:
Codex:

Checks whether a CSS stylesheet has been added to the queue.



Quellcode

function wp_style_is( $handle, $status = 'enqueued' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	return (bool) wp_styles()->query( $handle, $status );
}