Skip to content

Instantly share code, notes, and snippets.

@localsbm
Last active December 20, 2021 20:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save localsbm/1a12b283b4e30181ba3c85657577847e to your computer and use it in GitHub Desktop.
Save localsbm/1a12b283b4e30181ba3c85657577847e to your computer and use it in GitHub Desktop.
add_action( 'wp_head', function () { ?>
<style>
:root {
/*Begin First Varible Code*/
--primary: <?php
$primary_color = rwmb_meta( //Change the variable to your desired varible name
'primary_color_picker', //Color Picker ID
['object_type' => 'setting'],
'my_settings_page' ); //Option Name from Settings Page
echo $primary_color;
?>;
;
/*End First Varible Code*/
/*Begin Second Varible Code*/
--secondary: <?php
$secondary_color = rwmb_meta( //Change the variable to your desired varible name
'secondary_color_picker', //Color Picker ID
['object_type' => 'setting'],
'my_settings_page' ); //Option Name from Settings Page
echo $secondary_color;
?>;
;
/*End Second Varible Code*/
}
</style>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment