wp_dequeue_style() WordPress Function

The wp_dequeue_style() function allows you to remove a registered CSS stylesheet from a WordPress generated page. This function is typically used to dequeue a stylesheet that is no longer needed or required.

wp_dequeue_style( string $handle ) #

Remove a previously enqueued CSS stylesheet.


Description

Top ↑

See also


Top ↑

Parameters

$handle

(string)(Required)Name of the stylesheet to be removed.


Top ↑

Source

File: wp-includes/functions.wp-styles.php

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

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


Top ↑

Changelog

Changelog
VersionDescription
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.