Created
May 11, 2023 10:26
-
-
Save l00f00/b61943ca6115f8bba13996a3e9f39144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//https://www.youtube.com/watch?v=mjLsbRgQ2k4 | |
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