ありがとう私はあなたがこのプラグインを使用すると思います
function mytheme_customize_register($wp_customize) {
//All our sections, settings, and controls will be added here
$wp_customize->add_setting('header_textcolor' , array(
'default' => "#000000",
'transport' => 'refresh',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'header_textcolor', array(
'label' => __('Header Color', 'mytheme'),
'section' => 'colors',
)));
}
add_action('customize_register', 'mytheme_customize_register');
function mytheme_customize_css()
{
?>
<style type="text/css">
h2 { color: #<?php echo get_theme_mod('header_textcolor', "#000000"); ?>; }
</style>
<?php
}
add_action('wp_head', 'mytheme_customize_css');
出力
<style type="text/css">
h1 {color:#000000;}
</style>
wp_head();
経由のhttps:/ /wordpress.org/plugins/fourteen-colors/ –