2
ฉันจะใช้ฟังก์ชัน WordPress ในสไตล์ชีทของฉันได้อย่างไร
ฉันให้style.phpไฟล์ของฉันมีลักษณะเช่นนี้ <?php header('Content-Type: text/css');?> #div{ background:<?php echo get_option('bgcolor');?>; } สิ่งนี้ไม่ทำงาน แต่เมื่อฉันทำสิ่งนี้จะได้ผล <?php header('Content-Type: text/css');?> #div{ background: <?php echo 'blue';?>; } จะมีปัญหาอะไร? นี่คือ 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');?> " /> <?php } add_action('admin_head','test'); นี่คือจริงในส่วนผู้ดูแล