wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_get_root_state_style › WordPress Function

Since7.1.0
Deprecatedn/a
wp_get_root_state_style ( $state_style, $nested_keys )
Parameters: (2)
  • (array) $state_style State style object.
    Required: Yes
  • (array) $nested_keys Keys to remove from the root style object.
    Required: Yes
Returns:
  • (array) Root-only style object.
Defined at:
Codex:

Returns a style object with nested state keys removed.



Source

function wp_get_root_state_style( $state_style, $nested_keys ) {
	if ( ! is_array( $state_style ) ) {
		return $state_style;
	}

	$root_style = $state_style;
	foreach ( $nested_keys as $key ) {
		unset( $root_style[ $key ] );
	}

	return $root_style;
}