WP_Style_Engine_CSS_Rules_Store::remove_rule( string $selector )

In this article

Removes a selector from the store.

Parameters

$selectorstringrequired
The CSS selector.

Source

public function remove_rule( $selector ) {
	unset( $this->rules[ $selector ] );
}

Changelog

VersionDescription
6.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.