WP_Theme_JSON::resolve_custom_css_format( array $tree ): array

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Given a tree, converts the internal representation of variables to the CSS representation.

Description

It is recursive and modifies the input in-place.

Parameters

$treearrayrequired
Input to process.

Return

array The modified $tree.

Source

// The global styles custom CSS is not sanitized, but can only be edited by users with 'edit_css' capability.
if ( isset( $input['css'] ) && current_user_can( 'edit_css' ) ) {
	$output = $input;
} else {
	$output = static::remove_insecure_styles( $input );
}

/*
 * Get a reference to element name from path.
 * $metadata['path'] = array( 'styles', 'elements', 'link' );
 */
$current_element = $metadata['path'][ count( $metadata['path'] ) - 1 ];

Changelog

VersionDescription
6.3.0Introduced.

User Contributed Notes

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