如何删除不需要的部分主题自定义区域?

时间:2015-01-29 16:26:25

标签: wordpress themes

我在WordPress Apperience自定义区域中确实不需要某些部分

enter image description here

例如,我想删除此区域中的,颜色和静态页面选项部分?

我该怎么办?那可能吗 ?

P.S:

我只是想使用,标题图片和网站标题&标语部分。

这是标题图片选项区域的代码。

$homepage_image = array(
    'width'         => 1900,
    'height'        => 872,
    'default-image' => get_template_directory_uri() . '/assets/img/home-bg.jpg',
);
add_theme_support( 'custom-header', $homepage_image );

感谢。

2 个答案:

答案 0 :(得分:1)

如果您使用$wp_customize->remove_section('nav');,您将收到一条php通知。检查https://developer.wordpress.org/reference/hooks/customize_loaded_componentshttps://wordpress.stackexchange.com/a/250368/97324

答案 1 :(得分:0)

不确定为什么要删除它,但您只需编辑theme目录中的customizer.php文件即可。你能给我一些关于为什么你需要禁用它的背景信息。也许,我们可以为您找到更好的解决方案。另外,请查看Theme Customizer here

上的codex