2
¿Cómo puedo usar las funciones de WordPress en mi hoja de estilo?
Tengo mi style.phparchivo con este aspecto. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Esto no funciona, pero cuando hago esto funciona. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } ¿Cuál sería el problema? Este es el mainfile.php <?php function test(){ global get_option('bgcolor');?> <input type="text" id="bgcolor" name="post_popup_settings[bgcolor]" value="<?php echo …