W3cubDocs

/WordPress

wp_dequeue_style( string $handle )

Removes a previously enqueued CSS stylesheet.

Description

See also

Parameters

$handlestringrequired
Name of the stylesheet to be removed.

Source

function wp_dequeue_style( $handle ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

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

Changelog

Version Description
3.1.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_dequeue_style