wp_dequeue_style

Advertisement

Summery Summery

Remove a previously enqueued CSS stylesheet.

Syntax Syntax

wp_dequeue_style( string $handle )

Parameters Parameters

$handle

(Required) Name of the stylesheet to be removed.

Source Source

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

 * @since 3.1.0
 *
 * @param string $handle Name of the stylesheet to be removed.
 */
function wp_dequeue_style( $handle ) {

Advertisement

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

See also See also

Advertisement

Leave a Reply