wp_register_style() – Register a CSS stylesheet.

You appear to be a bot. Output may be restricted

Description

Register a CSS stylesheet.

Usage

$bool = wp_register_style( $handle, $src, $deps, $ver, $media );

Parameters

$handle
( string ) required – Name of the stylesheet. Should be unique.
$src
( string|false ) required – Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory. If source is set to false, stylesheet is an alias of other stylesheets it depends on.
$deps
( string[] ) optional – Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
$ver
( string|bool|null ) optional – 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.
$media
( string ) optional default: all – 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)'.

Returns

bool Whether the style has been registered. True on success, false on failure.

Source

File name: wordpress/wp-includes/functions.wp-styles.php
Lines:

1 to 5 of 5
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
  _wp_scripts_maybe_doing_it_wrong( wp_register_style, $handle );

  return wp_styles()->add( $handle, $src, $deps, $ver, $media );
}
 

 View on GitHub View on Trac