2
WordPress işlevlerini stil sayfamda nasıl kullanabilirim?
Benim sahip style.phpdosyası bu gibi bakarak. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Bu işe yaramıyor, ama bunu yaptığımda işe yarıyor. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } Sorun ne olurdu Bu 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');?> " /> …