Hello.
I have a small question about registering Customizer API / Redux styles.
What is the right method of adding style file to head ?
For example I have test.php file that consist of codes like:
<?php global $redux_theme_option; ?>
<style type = 'text/css'>
h1{color:<?php echo $redux_theme_option["h1_color"];?>
</style>
How can i add this file to head with right method?
Thanks!