WP_Theme_JSON::is_safe_css_declaration( string $property_name, string $property_value ): bool

In this article

Checks that a declaration provided by the user is safe.

Parameters

$property_namestringrequired
Property name in a CSS declaration, i.e. the color in color: red.
$property_valuestringrequired
Value in a CSS declaration, i.e. the red in color: red.

Return

bool

Source

 * Check the value isn't an array before adding so as to not
 * double up shorthand and longhand styles.
 */
$value = _wp_array_get( $input, $path, array() );
if ( ! is_array( $value ) ) {

Changelog

VersionDescription
5.9.0Introduced.

User Contributed Notes

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