PHP 8.2.29
Preview: functions.wp-styles.php Size: 8.44 KB
/home/medyaist/hurdamakara.com.tr/wp-includes/functions.wp-styles.php
<?php
/**
 * Dependencies API: Styles functions
 *
 * @since 2.6.0
 *
 * @package WordPress
 * @subpackage Dependencies
 */

/**
 * Initializes $wp_styles if it has not been set.
 *
 * @since 4.2.0
 *
 * @global WP_Styles $wp_styles
 *
 * @return WP_Styles WP_Styles instance.
 */
function wp_styles() {
	global $wp_styles;

	if ( ! ( $wp_styles instanceof WP_Styles ) ) {
		$wp_styles = new WP_Styles();
	}

	return $wp_styles;
}

/**
 * Displays styles that are in the $handles queue.
 *
 * 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.
 *
 * @since 2.6.0
 *
 * @global WP_Styles $wp_styles The WP_Styles object for printing styles.
 *
 * @param string|bool|array $handles Styles to be printed. Default 'false'.
 * @return string[] On success, an array of handles of processed WP_Dependencies items; otherwise, an empty array.
 */
function wp_print_styles( $handles = false ) {
	global $wp_styles;

	if ( '' === $handles ) { // For 'wp_head'.
		$handles = false;
	}

	if ( ! $handles ) {
		/**
		 * Fires before styles in the $handles queue are printed.
		 *
		 * @since 2.6.0
		 */
		do_action( 'wp_print_styles' );
	}

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );

	if ( ! ( $wp_styles instanceof WP_Styles ) ) {
		if ( ! $handles ) {
			return array(); // No need to instantiate if nothing is there.
		}
	}

	return wp_styles()->do_items( $handles );
}

/**
 * Adds extra CSS styles to a registered stylesheet.
 *
 * Styles will only be added if the stylesheet is 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
 * they were added, i.e. the latter added styles can redeclare the previous.
 *
 * @see WP_Styles::add_inline_style()
 *
 * @since 3.3.0
 *
 * @param string $handle Name of the stylesheet to add the extra styles to.
 * @param string $data   String containing the CSS styles to be added.
 * @return bool True on success, false on failure.
 */
function wp_add_inline_style( $handle, $data ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	if ( false !== stripos( $data, '</style>' ) ) {
		_doing_it_wrong(
			__FUNCTION__,
			sprintf(
				/* translators: 1: <style>, 2: wp_add_inline_style() */
				__( 'Do not pass %1$s tags to %2$s.' ),
				'<code>&lt;style&gt;</code>',
				'<code>wp_add_inline_style()</code>'
			),
			'3.7.0'
		);
		$data = trim( preg_replace( '#<style[^>]*>(.*)</style>#is', '$1', $data ) );
	}

	return wp_styles()->add_inline_style( $handle, $data );
}

/**
 * Registers a CSS stylesheet.
 *
 * @see WP_Dependencies::add()
 * @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
 *
 * @since 2.6.0
 * @since 4.3.0 A return value was added.
 *
 * @param string           $handle Name of the stylesheet. Should be unique.
 * @param string|false     $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.
 * @param string[]         $deps   Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
 * @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)'.
 * @return bool Whether the style has been registered. True on success, false on failure.
 */
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

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

/**
 * Removes a registered stylesheet.
 *
 * @see WP_Dependencies::remove()
 *
 * @since 2.1.0
 *
 * @param string $handle Name of the stylesheet to be removed.
 */
function wp_deregister_style( $handle ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	wp_styles()->remove( $handle );
}

/**
 * Enqueues a CSS stylesheet.
 *
 * Registers the style if source provided (does NOT overwrite) and enqueues.
 *
 * @see WP_Dependencies::add()
 * @see WP_Dependencies::enqueue()
 * @link https://www.w3.org/TR/CSS2/media.html#media-types List of CSS media types.
 *
 * @since 2.6.0
 *
 * @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.
 *                                 Default empty.
 * @param string[]         $deps   Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
 * @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)'.
 */
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 );
}

/**
 * Removes a previously enqueued CSS stylesheet.
 *
 * @see WP_Dependencies::dequeue()
 *
 * @since 3.1.0
 *
 * @param string $handle Name of the stylesheet to be removed.
 */
function wp_dequeue_style( $handle ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	wp_styles()->dequeue( $handle );
}

/**
 * Checks whether a CSS stylesheet has been added to the queue.
 *
 * @since 2.8.0
 *
 * @param string $handle Name of the stylesheet.
 * @param string $status Optional. Status of the stylesheet to check. Default 'enqueued'.
 *                       Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'.
 * @return bool Whether style is queued.
 */
function wp_style_is( $handle, $status = 'enqueued' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	return (bool) wp_styles()->query( $handle, $status );
}

/**
 * Adds metadata to a CSS stylesheet.
 *
 * Works only if the stylesheet has already been registered.
 *
 * Possible values for $key and $value:
 * '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.
 * 'path'        string      The absolute path to a stylesheet. Stylesheet will
 *                           load inline when 'path' is set.
 *
 * @see WP_Dependencies::add_data()
 *
 * @since 3.6.0
 * @since 5.8.0 Added 'path' as an official value for $key.
 *              See {@see wp_maybe_inline_styles()}.
 * @since 6.9.0 'conditional' value changed. If the 'conditional' parameter is present
 *              the stylesheet will be ignored.
 *
 * @param string $handle Name of the stylesheet.
 * @param string $key    Name of data point for which we're storing a value.
 *                       Accepts 'rtl' and 'suffix', 'alt', 'title' and 'path'.
 * @param mixed  $value  String containing the CSS data to be added.
 * @return bool True on success, false on failure.
 */
function wp_style_add_data( $handle, $key, $value ) {
	return wp_styles()->add_data( $handle, $key, $value );
}

Directory Contents

Dirs: 29 × Files: 149
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
assets DIR
- drwxr-xr-x 2026-01-13 05:10:58
Edit Download
- drwxr-xr-x 2026-01-13 16:50:50
Edit Download
- drwxr-xr-x 2026-01-08 23:33:37
Edit Download
- drwxr-xr-x 2026-01-08 23:34:33
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-30 00:47:11
Edit Download
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
css DIR
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
customize DIR
- drwxr-xr-x 2026-01-13 11:42:45
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-13 05:04:45
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-14 23:22:58
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-07 00:14:27
Edit Download
images DIR
- drwxr-xr-x 2026-01-13 05:26:49
Edit Download
- drwxr-xr-x 2026-01-14 23:23:24
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-14 23:19:44
Edit Download
js DIR
- drwxr-xr-x 2026-01-07 21:52:17
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 23:23:59
Edit Download
- drwxr-xr-x 2026-01-13 05:07:20
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-07 00:17:33
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-14 23:24:20
Edit Download
Requests DIR
- drwxr-xr-x 2024-03-25 09:23:08
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-14 23:24:29
Edit Download
SimplePie DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
sitemaps DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
- drwxr-xr-x 2026-01-13 20:28:36
Edit Download
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
Text DIR
- drwxr-xr-x 2026-01-13 05:04:56
Edit Download
- drwxr-xr-x 2026-01-08 23:35:37
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-14 23:25:34
Edit Download
7.80 KB lrw-r--r-- 2025-11-17 07:58:28
Edit Download
18.94 KB lrw-r--r-- 2025-10-24 01:04:26
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
12.90 KB lrw-r--r-- 2024-11-29 19:46:22
Edit Download
61.02 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
112.05 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
42.63 KB lrw-r--r-- 2025-10-19 14:42:28
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.46 KB lrw-r--r-- 2024-07-17 21:52:18
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.28 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.62 KB lrw-r--r-- 2025-03-05 19:17:24
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.97 KB lrw-r--r-- 2024-09-19 22:55:36
Edit Download
11.25 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
5.32 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
10.60 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
67.84 KB lrw-r--r-- 2025-11-24 21:54:36
Edit Download
6.34 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
5.49 KB lrw-r--r-- 2025-03-04 10:06:28
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
7.02 KB lrw-r--r-- 2025-10-30 13:03:32
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.86 KB lrw-r--r-- 2024-05-01 21:01:10
Edit Download
24.23 KB lrw-r--r-- 2025-10-20 06:20:28
Edit Download
3.97 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
47.66 KB lrw-r--r-- 2025-10-31 15:57:30
Edit Download
9.22 KB lrw-r--r-- 2025-02-11 10:40:30
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.38 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
56.65 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
70.91 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
35.30 KB lrw-r--r-- 2025-11-10 17:28:32
Edit Download
15.02 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
2.57 KB lrw-r--r-- 2025-10-14 02:47:32
Edit Download
39.83 KB lrw-r--r-- 2024-06-14 09:18:12
Edit Download
70.64 KB lrw-r--r-- 2025-04-24 19:22:30
Edit Download
15.56 KB lrw-r--r-- 2025-04-10 10:47:26
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 13:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-11-03 20:47:34
Edit Download
7.22 KB lrw-r--r-- 2023-06-24 14:17:24
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 18:32:18
Edit Download
4.30 KB lrw-r--r-- 2023-10-11 04:05:26
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
40.60 KB lrw-r--r-- 2025-08-20 09:55:28
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2025-04-28 13:37:28
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 19:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.49 KB lrw-r--r-- 2025-02-25 19:40:22
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 22:25:14
Edit Download
29.82 KB lrw-r--r-- 2025-04-20 20:51:30
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.42 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 02:05:12
Edit Download
30.93 KB lrw-r--r-- 2025-06-24 20:40:34
Edit Download
4.99 KB lrw-r--r-- 2024-09-03 15:19:14
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.72 KB lrw-r--r-- 2025-10-21 01:33:30
Edit Download
29.96 KB lrw-r--r-- 2025-02-09 08:09:22
Edit Download
6.34 KB lrw-r--r-- 2025-08-20 12:01:32
Edit Download
159.91 KB lrw-r--r-- 2025-10-22 03:30:30
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
4.77 KB lrw-r--r-- 2025-02-17 08:24:22
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 08:11:22
Edit Download
62.19 KB lrw-r--r-- 2025-07-15 05:22:38
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.17 KB lrw-r--r-- 2025-06-29 18:47:30
Edit Download
31.13 KB lrw-r--r-- 2025-10-27 13:12:36
Edit Download
33.38 KB lrw-r--r-- 2025-11-18 07:12:30
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 08:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
30.91 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
7.29 KB lrw-r--r-- 2025-06-27 12:09:32
Edit Download
7.35 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
11.86 KB lrw-r--r-- 2025-10-28 18:37:34
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 18:42:28
Edit Download
39.99 KB lrw-r--r-- 2025-10-22 13:30:32
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
979 B lrw-r--r-- 2024-02-14 16:27:10
Edit Download
18.44 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.24 KB lrw-r--r-- 2024-11-19 23:50:24
Edit Download
34.90 KB lrw-r--r-- 2024-11-03 23:34:16
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
160.50 KB lrw-r--r-- 2025-11-10 03:43:38
Edit Download
64.27 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
2.94 KB lrw-r--r-- 2025-07-06 08:57:36
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
18.00 KB lrw-r--r-- 2024-11-02 12:01:20
Edit Download
210.40 KB lrw-r--r-- 2025-08-21 12:00:40
Edit Download
25.86 KB lrw-r--r-- 2025-11-01 01:46:32
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
37.02 KB lrw-r--r-- 2025-11-10 19:51:36
Edit Download
4.02 KB lrw-r--r-- 2023-05-02 12:45:22
Edit Download
31.84 KB lrw-r--r-- 2026-01-30 20:29:56
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 21:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
9.56 KB lrw-r--r-- 2025-10-09 19:05:40
Edit Download
281.84 KB lrw-r--r-- 2025-11-06 20:37:32
Edit Download
14.95 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
8.44 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 10:43:24
Edit Download
81.72 KB lrw-r--r-- 2025-10-22 18:02:36
Edit Download
25.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 13:35:36
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 13:29:16
Edit Download
200 B lrw-r--r-- 2020-11-12 08:17:08
Edit Download
255 B lrw-r--r-- 2020-11-16 19:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
9.68 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
23.49 KB lrw-r--r-- 2025-11-04 16:51:36
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
2.84 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
6.09 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
6.41 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
69.46 KB lrw-r--r-- 2025-09-12 15:05:36
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 16:48:26
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).