访问wp_customize设置的值

时间:2015-02-02 22:21:20

标签: wordpress

所以,我有以下代码:

    function themename_customize_register($wp_customize){

        // Display date
        $wp_customize->add_section('display_date_section', array(
            'title'    => 'Datum weergeven',
            'description' => 'Wil je de datum weergeven?',
            'priority' => 120,
        ));

        $wp_customize->add_setting('display_date', array(
            'default'        => 'value1',
            'capability'     => 'edit_theme_options',
            'type'           => 'option',
        ));

        $wp_customize->add_control('display_date_section', array(
            'label'      => 'Datum weergeven:',
            'section'    => 'display_date_section',
            'settings'   => 'display_date',
            'type'       => 'theme_mod',
            'choices'    => array(
                'value1' => 'Ja',
                'value2' => 'Nee',
            ),
        ));
    }


add_action('customize_register', 'themename_customize_register');

如何访问设置的值?现在每当我尝试访问它时(通过get_theme_mod$wp_customize->get_settings)我的主要目标是让用户能够控制他们想要显示日期。有人能帮助我吗? :d

0 个答案:

没有答案