2
Wie kann ich WordPress-Funktionen in meinem Stylesheet verwenden?
Ich habe meine style.phpDatei so aussehen. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Das funktioniert nicht, aber wenn ich das tue, funktioniert es. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } Was wäre das Problem? Dies ist die mainfile.php <?php function test(){ global get_option('bgcolor');?> <input type="text" id="bgcolor" name="post_popup_settings[bgcolor]" …