Wordpress - 仪表板不允许自定义标题徽标

时间:2014-12-21 08:44:26

标签: wordpress themes wordpress-theming customization

我在仪表板中有adaptive flat theme我可以选择自定义主题,即标题徽标

但它并没有向我显示我不了解原因的选项

这是我的屏幕

显示选项的屏幕

enter image description here

显示未显示选项的屏幕。

注意:

即使我卸载了它们,删除并重新安装了主题,并在另一个文件夹中也做了同样的事情,清除了缓存和cookie,但它不是成功的

我甚至导航到左侧窗格中的主页,子页面,但我无法看到标题编辑选项以更新标题徽标。

我怎样才能回来?

enter image description here

1 个答案:

答案 0 :(得分:3)

在adaptive-flat / lib / customizer.php中输入以下代码:

//header image

    $wp_customize->add_section( 'header_logo' , array(
    'title'      => __( 'Header Logo', 'giga_flat' ),
    'priority'   => 2,
    ) );

    $wp_customize->add_setting( 'header_image' , array(
    'default'     => '',
    'transport'   => 'refresh',
    ) );

    $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'header_image', array(
    'label'        => __( 'Image Upload', 'giga_flat' ),
    'section'    => 'header_logo',
    'settings'   => 'header_image',
    'priority' => 2, 
    ) ) );