2008-05-21 07:56:04 +02:00
|
|
|
<?php
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
|
|
|
* BackPress styles procedural API.
|
|
|
|
*
|
|
|
|
* @package BackPress
|
|
|
|
* @since r79
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
2008-10-18 22:46:30 +02:00
|
|
|
* Display styles that are in the queue or part of $handles.
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
|
|
|
* @since r79
|
2008-10-18 22:46:30 +02:00
|
|
|
* @uses do_action() Calls 'wp_print_styles' hook.
|
|
|
|
* @global object $wp_styles The WP_Styles object for printing styles.
|
2008-09-27 12:06:18 +02:00
|
|
|
*
|
2009-12-24 09:21:16 +01:00
|
|
|
* @param array|bool $handles Styles to be printed. An empty array prints the queue,
|
|
|
|
* an array with one string prints that style, and an array of strings prints those styles.
|
2008-10-18 22:46:30 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2008-09-27 12:06:18 +02:00
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_print_styles( $handles = false ) {
|
|
|
|
if ( '' === $handles ) // for wp_head
|
|
|
|
$handles = false;
|
|
|
|
|
2012-01-02 23:32:00 +01:00
|
|
|
if ( ! $handles )
|
|
|
|
do_action( 'wp_print_styles' );
|
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
if ( !$handles )
|
2011-07-25 02:36:06 +02:00
|
|
|
return array(); // No need to instantiate if nothing is there.
|
2008-05-21 07:56:04 +02:00
|
|
|
else
|
2008-06-04 22:21:02 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $wp_styles->do_items( $handles );
|
|
|
|
}
|
|
|
|
|
2011-07-25 02:36:06 +02:00
|
|
|
/**
|
|
|
|
* Adds extra CSS.
|
|
|
|
*
|
|
|
|
* Works only if the stylesheet has already been added.
|
2011-07-28 20:24:00 +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
|
|
|
|
* they were added, i.e. the latter added styles can redeclare the previous.
|
2011-10-24 21:13:23 +02:00
|
|
|
*
|
2012-01-04 20:03:33 +01:00
|
|
|
* @since 3.3.0
|
2011-07-25 02:36:06 +02:00
|
|
|
* @see WP_Scripts::add_inline_style()
|
|
|
|
*/
|
|
|
|
function wp_add_inline_style( $handle, $data ) {
|
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2011-07-25 02:36:06 +02:00
|
|
|
|
|
|
|
return $wp_styles->add_inline_style( $handle, $data );
|
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
|
|
|
* Register CSS style file.
|
|
|
|
*
|
|
|
|
* @since r79
|
2009-12-24 09:21:16 +01:00
|
|
|
* @see WP_Styles::add() For additional information.
|
|
|
|
* @global object $wp_styles The WP_Styles object for printing styles.
|
|
|
|
* @link http://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
|
|
|
|
*
|
|
|
|
* @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 Array of handles of any stylesheet that this stylesheet depends on.
|
|
|
|
* (Stylesheets that must be loaded before this stylesheet.) Pass an empty array if there are no dependencies.
|
2012-01-05 21:50:54 +01:00
|
|
|
* @param string|bool $ver String specifying the stylesheet version number. Set to null to disable.
|
2009-12-28 01:48:20 +01:00
|
|
|
* Used to ensure that the correct version is sent to the client regardless of caching.
|
2009-12-24 09:21:16 +01:00
|
|
|
* @param string $media The media for which this stylesheet has been defined.
|
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' ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
$wp_styles->add( $handle, $src, $deps, $ver, $media );
|
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
|
|
|
* Remove a registered CSS file.
|
|
|
|
*
|
|
|
|
* @since r79
|
2009-12-24 09:21:16 +01:00
|
|
|
* @see WP_Styles::remove() For additional information.
|
|
|
|
* @global object $wp_styles The WP_Styles object for printing styles.
|
|
|
|
*
|
|
|
|
* @param string $handle Name of the stylesheet.
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_deregister_style( $handle ) {
|
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
$wp_styles->remove( $handle );
|
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
|
|
|
* Enqueue a CSS style file.
|
|
|
|
*
|
2009-12-28 01:48:20 +01:00
|
|
|
* Registers the style if src provided (does NOT overwrite) and enqueues.
|
|
|
|
*
|
2008-10-18 22:46:30 +02:00
|
|
|
* @since r79
|
|
|
|
* @see WP_Styles::add(), WP_Styles::enqueue()
|
2009-12-24 09:21:16 +01:00
|
|
|
* @global object $wp_styles The WP_Styles object for printing styles.
|
|
|
|
* @link http://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
|
|
|
|
*
|
|
|
|
* @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 Array of handles (names) of any stylesheet that this stylesheet depends on.
|
|
|
|
* (Stylesheets that must be loaded before this stylesheet.) Pass an empty array if there are no dependencies.
|
|
|
|
* @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 The media for which this stylesheet has been defined.
|
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' ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new 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
|
|
|
/**
|
|
|
|
* Remove an enqueued style.
|
|
|
|
*
|
|
|
|
* @since WP 3.1
|
|
|
|
* @see WP_Styles::dequeue() For parameter information.
|
|
|
|
*/
|
|
|
|
function wp_dequeue_style( $handle ) {
|
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2010-09-09 06:42:47 +02:00
|
|
|
|
|
|
|
$wp_styles->dequeue( $handle );
|
|
|
|
}
|
|
|
|
|
2009-02-15 12:04:42 +01:00
|
|
|
/**
|
|
|
|
* Check whether style has been added to WordPress Styles.
|
|
|
|
*
|
2012-08-30 20:57:57 +02:00
|
|
|
* By default, checks if the style has been enqueued. You can also
|
|
|
|
* pass 'registered' to $list, to see if the style is registered,
|
|
|
|
* and you can check processing statuses with 'to_do' and 'done'.
|
2009-02-15 12:04:42 +01:00
|
|
|
*
|
|
|
|
* @since WP unknown; BP unknown
|
2009-12-24 09:21:16 +01:00
|
|
|
* @global object $wp_styles The WP_Styles object for printing styles.
|
2009-02-15 12:04:42 +01:00
|
|
|
*
|
2009-12-24 09:21:16 +01:00
|
|
|
* @param string $handle Name of the stylesheet.
|
2012-08-30 20:57:57 +02:00
|
|
|
* @param string $list Optional. Defaults to 'enqueued'. Values are
|
|
|
|
* 'registered', 'enqueued' (or 'queue'), 'to_do', and 'done'.
|
|
|
|
* @return bool Whether style is in the list.
|
2009-02-15 12:04:42 +01:00
|
|
|
*/
|
2012-08-30 20:57:57 +02:00
|
|
|
function wp_style_is( $handle, $list = 'enqueued' ) {
|
2009-02-15 12:04:42 +01:00
|
|
|
global $wp_styles;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
}
|
2009-02-15 12:04:42 +01:00
|
|
|
|
2012-08-30 20:57:57 +02:00
|
|
|
return (bool) $wp_styles->query( $handle, $list );
|
2009-02-15 12:04:42 +01:00
|
|
|
}
|