2008-05-21 07:56:04 +02:00
|
|
|
<?php
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
2016-02-27 21:34:29 +01:00
|
|
|
* Dependencies API: Styles functions
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2016-02-27 21:34:29 +01:00
|
|
|
* @subpackage Dependencies
|
2008-09-27 12:06:18 +02:00
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
/**
|
|
|
|
* Initialize $wp_styles if it has not been set.
|
|
|
|
*
|
|
|
|
* @global WP_Styles $wp_styles
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
2015-04-05 17:56:26 +02:00
|
|
|
* @return WP_Styles WP_Styles instance.
|
2015-01-16 03:31:23 +01:00
|
|
|
*/
|
|
|
|
function wp_styles() {
|
|
|
|
global $wp_styles;
|
2020-06-17 12:16:08 +02:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
if ( ! ( $wp_styles instanceof WP_Styles ) ) {
|
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2020-06-17 12:16:08 +02:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
return $wp_styles;
|
|
|
|
}
|
|
|
|
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Display styles that are in the $handles queue.
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* 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.
|
2013-10-15 16:35:09 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @global WP_Styles $wp_styles The WP_Styles object for printing styles.
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2014-12-01 00:24:25 +01:00
|
|
|
* @param string|bool|array $handles Styles to be printed. Default 'false'.
|
2019-11-05 22:23:02 +01:00
|
|
|
* @return string[] On success, an array of handles of processed WP_Dependencies items; otherwise, an empty array.
|
2008-09-27 12:06:18 +02:00
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_print_styles( $handles = false ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
global $wp_styles;
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
if ( '' === $handles ) { // For 'wp_head'.
|
2008-05-21 07:56:04 +02:00
|
|
|
$handles = false;
|
2015-01-16 03:31:23 +01:00
|
|
|
}
|
2019-11-09 14:43:01 +01:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
if ( ! $handles ) {
|
2019-11-09 14:43:01 +01:00
|
|
|
/**
|
|
|
|
* Fires before styles in the $handles queue are printed.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
2012-01-02 23:32:00 +01:00
|
|
|
do_action( 'wp_print_styles' );
|
2015-01-16 03:31:23 +01:00
|
|
|
}
|
|
|
|
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
2012-01-02 23:32:00 +01:00
|
|
|
|
2015-01-16 02:06:24 +01:00
|
|
|
if ( ! ( $wp_styles instanceof WP_Styles ) ) {
|
2015-01-16 03:31:23 +01:00
|
|
|
if ( ! $handles ) {
|
2011-07-25 02:36:06 +02:00
|
|
|
return array(); // No need to instantiate if nothing is there.
|
2015-01-16 03:31:23 +01:00
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2015-06-12 18:54:24 +02:00
|
|
|
return wp_styles()->do_items( $handles );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2011-07-25 02:36:06 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Add extra CSS styles to a registered stylesheet.
|
2011-07-25 02:36:06 +02:00
|
|
|
*
|
2018-12-20 03:42:48 +01:00
|
|
|
* Styles will only be added if the stylesheet is already in the queue.
|
2013-09-24 04:24:09 +02:00
|
|
|
* Accepts a string $data containing the CSS. If two or more CSS code blocks
|
|
|
|
* are added to the same stylesheet $handle, they will be printed in the order
|
2011-07-28 20:24:00 +02:00
|
|
|
* they were added, i.e. the latter added styles can redeclare the previous.
|
2011-10-24 21:13:23 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @see WP_Styles::add_inline_style()
|
|
|
|
*
|
2012-01-04 20:03:33 +01:00
|
|
|
* @since 3.3.0
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
2016-03-14 23:37:26 +01:00
|
|
|
* @param string $handle Name of the stylesheet to add the extra styles to.
|
2013-09-24 04:24:09 +02:00
|
|
|
* @param string $data String containing the CSS styles to be added.
|
|
|
|
* @return bool True on success, false on failure.
|
2011-07-25 02:36:06 +02:00
|
|
|
*/
|
|
|
|
function wp_add_inline_style( $handle, $data ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2011-07-25 02:36:06 +02:00
|
|
|
|
2013-10-15 16:35:09 +02:00
|
|
|
if ( false !== stripos( $data, '</style>' ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
_doing_it_wrong(
|
2018-08-17 03:51:36 +02:00
|
|
|
__FUNCTION__,
|
|
|
|
sprintf(
|
2017-12-01 00:11:00 +01:00
|
|
|
/* translators: 1: <style>, 2: wp_add_inline_style() */
|
|
|
|
__( 'Do not pass %1$s tags to %2$s.' ),
|
|
|
|
'<code><style></code>',
|
|
|
|
'<code>wp_add_inline_style()</code>'
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
'3.7.0'
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2013-10-15 16:35:09 +02:00
|
|
|
$data = trim( preg_replace( '#<style[^>]*>(.*)</style>#is', '$1', $data ) );
|
|
|
|
}
|
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
return wp_styles()->add_inline_style( $handle, $data );
|
2011-07-25 02:36:06 +02:00
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Register a CSS stylesheet.
|
2008-10-18 22:46:30 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @see WP_Dependencies::add()
|
2016-06-10 06:50:33 +02:00
|
|
|
* @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
2015-05-10 21:57:25 +02:00
|
|
|
* @since 4.3.0 A return value was added.
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
2016-03-14 23:37:26 +01:00
|
|
|
* @param string $handle Name of the stylesheet. Should be unique.
|
2018-09-28 23:51:24 +02:00
|
|
|
* @param string|bool $src 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.
|
2019-10-26 23:02:02 +02:00
|
|
|
* @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
|
2016-03-14 23:37:26 +01:00
|
|
|
* @param 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.
|
|
|
|
* @param 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)'.
|
2015-05-10 21:57:25 +02:00
|
|
|
* @return bool Whether the style has been registered. True on success, false on failure.
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2008-10-29 23:17:54 +01:00
|
|
|
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2015-05-10 21:57:25 +02:00
|
|
|
return wp_styles()->add( $handle, $src, $deps, $ver, $media );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Remove a registered stylesheet.
|
2008-10-18 22:46:30 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @see WP_Dependencies::remove()
|
2009-12-24 09:21:16 +01:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet to be removed.
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_deregister_style( $handle ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
wp_styles()->remove( $handle );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Enqueue a CSS stylesheet.
|
2008-10-18 22:46:30 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* Registers the style if source provided (does NOT overwrite) and enqueues.
|
2009-12-28 01:48:20 +01:00
|
|
|
*
|
2015-12-23 08:53:26 +01:00
|
|
|
* @see WP_Dependencies::add()
|
|
|
|
* @see WP_Dependencies::enqueue()
|
2016-06-10 06:50:33 +02:00
|
|
|
* @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2016-03-14 23:37:26 +01:00
|
|
|
* @param string $handle Name of the stylesheet. Should be unique.
|
|
|
|
* @param string $src Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory.
|
2016-09-04 06:09:28 +02:00
|
|
|
* Default empty.
|
2019-10-26 23:02:02 +02:00
|
|
|
* @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
|
2016-03-14 23:37:26 +01:00
|
|
|
* @param 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.
|
|
|
|
* @param 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)'.
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2016-09-04 06:09:28 +02:00
|
|
|
function wp_enqueue_style( $handle, $src = '', $deps = array(), $ver = false, $media = 'all' ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2015-01-16 03:31:23 +01:00
|
|
|
|
|
|
|
$wp_styles = wp_styles();
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
if ( $src ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$_handle = explode( '?', $handle );
|
2008-05-21 07:56:04 +02:00
|
|
|
$wp_styles->add( $_handle[0], $src, $deps, $ver, $media );
|
|
|
|
}
|
2020-06-17 12:16:08 +02:00
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
$wp_styles->enqueue( $handle );
|
|
|
|
}
|
2009-02-15 12:04:42 +01:00
|
|
|
|
2010-09-09 06:42:47 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Remove a previously enqueued CSS stylesheet.
|
|
|
|
*
|
|
|
|
* @see WP_Dependencies::dequeue()
|
2010-09-09 06:42:47 +02:00
|
|
|
*
|
2013-09-16 14:46:11 +02:00
|
|
|
* @since 3.1.0
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet to be removed.
|
2010-09-09 06:42:47 +02:00
|
|
|
*/
|
|
|
|
function wp_dequeue_style( $handle ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2010-09-09 06:42:47 +02:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
wp_styles()->dequeue( $handle );
|
2010-09-09 06:42:47 +02:00
|
|
|
}
|
|
|
|
|
2009-02-15 12:04:42 +01:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Check whether a CSS stylesheet has been added to the queue.
|
2009-02-15 12:04:42 +01:00
|
|
|
*
|
2013-09-16 14:46:11 +02:00
|
|
|
* @since 2.8.0
|
2009-02-15 12:04:42 +01:00
|
|
|
*
|
2009-12-24 09:21:16 +01:00
|
|
|
* @param string $handle Name of the stylesheet.
|
2013-09-24 04:24:09 +02:00
|
|
|
* @param string $list Optional. Status of the stylesheet to check. Default 'enqueued'.
|
|
|
|
* Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'.
|
|
|
|
* @return bool Whether style is queued.
|
2009-02-15 12:04:42 +01:00
|
|
|
*/
|
2012-08-30 20:57:57 +02:00
|
|
|
function wp_style_is( $handle, $list = 'enqueued' ) {
|
2020-06-17 12:16:08 +02:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
|
2009-02-15 12:04:42 +01:00
|
|
|
|
2015-01-16 03:31:23 +01:00
|
|
|
return (bool) wp_styles()->query( $handle, $list );
|
2009-02-15 12:04:42 +01:00
|
|
|
}
|
2013-07-18 21:46:38 +02:00
|
|
|
|
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* Add metadata to a CSS stylesheet.
|
2013-07-18 21:46:38 +02:00
|
|
|
*
|
|
|
|
* Works only if the stylesheet has already been added.
|
2013-09-24 04:24:09 +02:00
|
|
|
*
|
2013-07-18 21:46:38 +02:00
|
|
|
* Possible values for $key and $value:
|
2013-09-24 04:24:09 +02:00
|
|
|
* 'conditional' string Comments for IE 6, lte IE 7 etc.
|
|
|
|
* 'rtl' bool|string To declare an RTL stylesheet.
|
|
|
|
* 'suffix' string Optional suffix, used in combination with RTL.
|
|
|
|
* 'alt' bool For rel="alternate stylesheet".
|
|
|
|
* 'title' string For preferred/alternate stylesheets.
|
2013-07-18 21:46:38 +02:00
|
|
|
*
|
2020-02-07 18:42:06 +01:00
|
|
|
* @see WP_Dependencies::add_data()
|
2013-07-18 21:46:38 +02:00
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @param string $handle Name of the stylesheet.
|
|
|
|
* @param string $key Name of data point for which we're storing a value.
|
|
|
|
* Accepts 'conditional', 'rtl' and 'suffix', 'alt' and 'title'.
|
2014-12-01 00:24:25 +01:00
|
|
|
* @param mixed $value String containing the CSS data to be added.
|
2013-07-18 21:46:38 +02:00
|
|
|
* @return bool True on success, false on failure.
|
|
|
|
*/
|
|
|
|
function wp_style_add_data( $handle, $key, $value ) {
|
2015-01-16 03:31:23 +01:00
|
|
|
return wp_styles()->add_data( $handle, $key, $value );
|
2013-07-18 21:46:38 +02:00
|
|
|
}
|