1

我在下面有以下代码,但我不知道为什么它不起作用。我从模板中得到的只是一个空白屏幕。有任何想法吗?我正在使用最新版本的 WordPress。

function twentyone_customizer_register($wp_customize)
{
    $wp_customize->add_section('logo_changer', array(
        'title'       => __('Images', 'twentyone'),
        'description' => 'Change index page background image.'
    ));

    $wp_customize->add_setting('logo_image', array(
        'default' => 'http://localhost/twentyone/wp-content/themes/twentyone/assets/img/showcase.jpg'
    ));

    $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'logo_image', array(
        'label'    => __('Edit Showcase Image', 'twentyone'),
        'section'  => 'logo_changer',
        'settings' => 'logo_image'
    )));
}
add_action('customize_register', 'twentyone_customizer_register');
4

1 回答 1

0

我已经解决了我的问题,并编辑了代码以反映更改。我以数字开头命名该函数,这导致主题定制器无法工作。

于 2013-08-11T22:31:59.390 回答