2
Bagaimana saya bisa menggunakan fungsi WordPress di stylesheet saya?
style.phpFile saya terlihat seperti ini. <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } Ini tidak bekerja, tetapi ketika saya melakukan ini, ini berhasil. <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } Apa masalahnya? Ini adalah 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');?> " …