css - How to use less with php
423
i'm using wordpress and i would like to be able to change all the same color of my website by changing one php function on my admin panel. I tried to do that on my custom-style.php but it don't work :
@main_color: <?php the_field('main_color', 'option'); ?>;
a{
color: @main_color;
}
I also tried this way on my header.php :
<style type="text/css">
@main_color: <?php the_field('main_color', 'option'); ?>;
</style>
Answer
Solution:
Your browser doesn't recognize less. You have to compile less or use normal css.
Answer
Solution:
check below link i hope help you
lessphp
when you use external lib you must change file ext to .less.php good luck