2
Como posso usar as funções do WordPress na minha folha de estilo?
Eu tenho meu style.phparquivo assim. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Isso não funciona, mas quando faço isso, funciona. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } Qual seria o problema? Este é o mainfile.php <?php function test(){ global get_option('bgcolor');?> <input type="text" id="bgcolor" name="post_popup_settings[bgcolor]" value="<?php echo get_option('bgcolor');?> …