WP_Styles::reset()publicWP 3.3.0

Resets class properties.

Method of the class: WP_Styles{}

No Hooks.

Return

null. Nothing (null).

Usage

global $wp_styles;
$wp_styles->reset();

Changelog

Since 3.3.0 Introduced.

WP_Styles::reset() code WP 6.5.2

public function reset() {
	$this->do_concat      = false;
	$this->concat         = '';
	$this->concat_version = '';
	$this->print_html     = '';
}