WP_Theme_JSON::get_metadata_boolean( array $data, bool|array $path, bool $default_value = false ): bool

In this article

For metadata values that can either be booleans or paths to booleans, gets the value.

Description

$data = array( ‘color’ => array( ‘defaultPalette’ => true ) );

static::get_metadata_boolean( $data, false );
// => false

static::get_metadata_boolean( $data, array( 'color', 'defaultPalette' ) );
// => true

Parameters

$dataarrayrequired
The data to inspect.
$pathbool|arrayrequired
Boolean or path to a boolean.
$default_valuebooloptional
Default value if the referenced path is missing.

Default:false

Return

bool Value of boolean metadata.

Source

}

// 2. Generate and append the rules that use the general selector.
$block_rules .= static::to_ruleset( $selector, $declarations );

// 3. Generate and append the rules that use the duotone selector.
if ( isset( $block_metadata['duotone'] ) && ! empty( $declarations_duotone ) ) {
	$block_rules .= static::to_ruleset( $block_metadata['duotone'], $declarations_duotone );
}

// 4. Generate Layout block gap styles.
if (
	static::ROOT_BLOCK_SELECTOR !== $selector &&
	! empty( $block_metadata['name'] )

Changelog

VersionDescription
6.0.0Introduced.

User Contributed Notes

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