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



wp_enqueue_style › WordPress Function

Seit2.6.0
Veraltetn/v
wp_enqueue_style ( $handle, $src = '', $deps = array(), $ver = false, $media = 'all' )
Parameter: (5)
  • (string) $handle Name of the stylesheet. Should be unique.
    Erforderlich: Ja
  • (string) $src Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string[]) $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
    Erforderlich: Nein
    Standard: array()
  • (string|bool|null) $ver Optional. String specifying stylesheet version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added.
    Erforderlich: Nein
    Standard: false
  • (string) $media Optional. The media for which this stylesheet has been defined. Default 'all'. Accepts media types like 'all', 'print' and 'screen', or media queries like '(orientation: portrait)' and '(max-width: 640px)'.
    Erforderlich: Nein
    Standard: 'all'
Links:
Siehe:
  • WP_Dependencies::add()
  • WP_Dependencies::enqueue()
Definiert in:
Codex:

Enqueues a CSS stylesheet.

Registers the style if source provided (does NOT overwrite) and enqueues.


Quellcode

function wp_enqueue_style( $handle, $src = '', $deps = array(), $ver = false, $media = 'all' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	$wp_styles = wp_styles();

	if ( $src ) {
		$_handle = explode( '?', $handle );
		$wp_styles->add( $_handle[0], $src, $deps, $ver, $media );
	}

	$wp_styles->enqueue( $handle );
}