WP_Style_Engine::get_url_or_value_css_declaration
Style value parser that constructs a CSS definition array comprising a single CSS property and value. If the provided value is an array containing a url property, the function will return a CSS definition array with a single property and value, with url escaped and injected into a CSS url() function, e.g., array( 'background-image' => "url( '...' )" ).
Method of the class: WP_Style_Engine{}
No Hooks.
Returns
String[]. An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
Usage
$result = WP_Style_Engine::get_url_or_value_css_declaration( $style_value, $style_definition );
- $style_value(array) (required)
- A single raw style value from
$block_stylesarray. - $style_definition(array) (required)
- A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
Changelog
| Since 6.4.0 | Introduced. |
WP_Style_Engine::get_url_or_value_css_declaration() WP Style Engine::get url or value css declaration code WP 7.0.2
protected static function get_url_or_value_css_declaration( $style_value, $style_definition ) {
if ( empty( $style_value ) ) {
return array();
}
$css_declarations = array();
if ( isset( $style_definition['property_keys']['default'] ) ) {
$value = null;
if ( ! empty( $style_value['url'] ) ) {
$value = "url('" . $style_value['url'] . "')";
} elseif ( is_string( $style_value ) ) {
$value = $style_value;
}
if ( null !== $value ) {
$css_declarations[ $style_definition['property_keys']['default'] ] = $value;
}
}
return $css_declarations;
}