wp_enqueue_global_styles_css_custom_properties()
Function that enqueues the CSS Custom Properties coming from theme.json.
No Hooks.
Returns
null. Nothing (null).
Usage
wp_enqueue_global_styles_css_custom_properties();
Changelog
| Since 5.9.0 | Introduced. |
wp_enqueue_global_styles_css_custom_properties() wp enqueue global styles css custom properties code WP 6.9.1
function wp_enqueue_global_styles_css_custom_properties() {
wp_register_style( 'global-styles-css-custom-properties', false );
wp_add_inline_style( 'global-styles-css-custom-properties', wp_get_global_stylesheet( array( 'variables' ) ) );
wp_enqueue_style( 'global-styles-css-custom-properties' );
}