3

カスタマイズ パネルにセクションを追加するために使用しているコードを次に示します。

function apple_customize_register($wp_customize){
    $wp_customize->add_section('apple_footer', array(
        'title'    => 'Footer',
        'priority' => 120,
    ));
    //------ display copyright in footer
    $wp_customize->add_setting('theme_options[copyright]', array(
        'capability' => 'edit_theme_options',
        'type'       => 'option',
    ));
    $wp_customize->add_control('theme_options[copyright]', array(
        'settings' => 'theme_options[copyright]',
        'label'    => __('Display Copyright'),
        'section'  => 'apple_footer',
        'type'     => 'checkbox',
        'value' => '1'
    ));
}
add_action('customize_register', 'apple_customize_register');

などを試しましたがget_option('theme_options[copyright]')get_theme_mod('theme_options[copyright]')すべてvar_dumpが戻ってきbool(false)ました。
テーマで値を使用するにはどうすればよいですか?

4

1 に答える 1