wp_deregister_style() WordPress Function
The wp_deregister_style() function allows you to deregister a stylesheet that has been registered with WordPress. This function takes a single parameter, which is the handle of the stylesheet to be deregistered.
wp_deregister_style( string $handle ) #
Remove a registered stylesheet.
Description
See also
Parameters
- $handle
(string)(Required)Name of the stylesheet to be removed.
Source
File: wp-includes/functions.wp-styles.php
function wp_deregister_style( $handle ) { _wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle ); wp_styles()->remove( $handle ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |