2008-05-21 07:56:04 +02:00
|
|
|
<?php
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
2013-09-24 04:24:09 +02:00
|
|
|
* BackPress Styles Procedural API
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage BackPress
|
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;
|
|
|
|
if ( ! ( $wp_styles instanceof WP_Styles ) ) {
|
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
|
|
|
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'.
|
2013-09-24 04:24:09 +02:00
|
|
|
* @return array On success, a processed array of 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 ) {
|
2015-01-16 03:31:23 +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
|
|
|
}
|
2013-10-27 18:59:09 +01:00
|
|
|
/**
|
|
|
|
* Fires before styles in the $handles queue are printed.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
2015-01-16 03:31:23 +01:00
|
|
|
if ( ! $handles ) {
|
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
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_styles;
|
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
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* Styles will only be added if the stylesheet in already in the queue.
|
|
|
|
* 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
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet to add the extra styles to. Must be lowercase.
|
|
|
|
* @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 ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
2011-07-25 02:36:06 +02:00
|
|
|
|
2013-10-15 16:35:09 +02:00
|
|
|
if ( false !== stripos( $data, '</style>' ) ) {
|
2014-10-05 23:06:15 +02:00
|
|
|
_doing_it_wrong( __FUNCTION__, __( 'Do not pass style tags to wp_add_inline_style().' ), '3.7' );
|
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()
|
2009-12-24 09:21:16 +01:00
|
|
|
* @link http://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
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet.
|
|
|
|
* @param string|bool $src Path to the stylesheet from the WordPress root directory. Example: '/css/mystyle.css'.
|
|
|
|
* @param array $deps An array of registered style handles this stylesheet depends on. Default empty array.
|
|
|
|
* @param string|bool $ver String specifying the stylesheet version number. Used to ensure that the correct version
|
|
|
|
* is sent to the client regardless of caching. Default 'false'. Accepts 'false', 'null', or 'string'.
|
|
|
|
* @param string $media Optional. The media for which this stylesheet has been defined.
|
|
|
|
* Default 'all'. Accepts 'all', 'aural', 'braille', 'handheld', 'projection', 'print',
|
|
|
|
* 'screen', 'tty', or 'tv'.
|
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' ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
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 ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
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
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @see WP_Dependencies::add(), WP_Dependencies::enqueue()
|
2009-12-24 09:21:16 +01:00
|
|
|
* @link http://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
|
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet.
|
|
|
|
* @param string|bool $src Path to the stylesheet from the root directory of WordPress. Example: '/css/mystyle.css'.
|
|
|
|
* @param array $deps An array of registered style handles this stylesheet depends on. Default empty array.
|
|
|
|
* @param string|bool $ver String specifying the stylesheet version number, if it has one. This parameter is used
|
|
|
|
* to ensure that the correct version is sent to the client regardless of caching, and so
|
|
|
|
* should be included if a version number is available and makes sense for the stylesheet.
|
|
|
|
* @param string $media Optional. The media for which this stylesheet has been defined.
|
|
|
|
* Default 'all'. Accepts 'all', 'aural', 'braille', 'handheld', 'projection', 'print',
|
|
|
|
* 'screen', 'tty', or 'tv'.
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2010-04-27 22:04:23 +02:00
|
|
|
function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = 'all' ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
2015-01-16 03:31:23 +01:00
|
|
|
|
|
|
|
$wp_styles = wp_styles();
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
if ( $src ) {
|
|
|
|
$_handle = explode('?', $handle);
|
|
|
|
$wp_styles->add( $_handle[0], $src, $deps, $ver, $media );
|
|
|
|
}
|
|
|
|
$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 ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
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' ) {
|
2015-01-16 03:42:22 +01:00
|
|
|
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
|
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
|
|
|
*
|
2013-09-24 04:24:09 +02:00
|
|
|
* @see WP_Dependency::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
|
|
|
}
|