WP_Style_Engine::store_css_rule()public staticWP 6.1.0

Stores a CSS rule using the provided CSS selector and CSS declarations.

Method of the class: WP_Style_Engine{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WP_Style_Engine::store_css_rule( $store_name, $css_selector, $css_declarations );
$store_name(string) (required)
A valid store key.
$css_selector(string) (required)
When a selector is passed, the function will return a full CSS rule $selector { ...rules } otherwise a concatenated string of properties and values.
$css_declarations(string[]) (required)
An associative array of CSS definitions, e.g. array( "$property" => "$value", "$property" => "$value" ).

Changelog

Since 6.1.0 Introduced.

WP_Style_Engine::store_css_rule() code WP 6.5.2

public static function store_css_rule( $store_name, $css_selector, $css_declarations ) {
	if ( empty( $store_name ) || empty( $css_selector ) || empty( $css_declarations ) ) {
		return;
	}
	static::get_store( $store_name )->add_rule( $css_selector )->add_declarations( $css_declarations );
}