我正在按照来自可怕媒体 ( http://www.youtube.com/watch?v=XloM1F5M2fU ) 的视频在 WordPress 主题中自定义我的自定义选项。这很好,但我有一个挂断电话。
function martinStart_footer_customizer_register($wp_customize) {
$wp_customize->add_section('footer_styles', array(
'title' => __('Footer Styles', 'martinStart'),
'description' => 'Modify Footer Styles'
));
$wp_customize->add_setting('footer_background', array(
'default' => '#CCC',
));
$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'footer_background_ctrl', array(
'label' => __('Footer Background Color', 'martinStart'),
'section' => 'footer_styles',
'settings' => 'footer_background'
) ));
}
function martinStart_footer_style() {
?>
<style type="text/css">
.site-footer {background-color: <$php echo get_theme_mod('footer_background'); ?>;}
</style>
<?php
}
add_action('wp_head', 'martinStart_footer_style');
add_action('customize_register', 'martinStart_footer_customizer_register');
所以我使用了Wordpress custom_color_control,颜色变化保存在wp_options表中,样式声明添加到头部。
但是没有添加值,它编写了php代码!谁能看到我做错了什么?