2
스타일 시트에서 워드 프레스 기능을 어떻게 사용합니까?
내 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'); 이것은 실제로 …