我遵循了给出的解决方案here 作者:Krupal Patel。
add_action( "customize_register", "ruth_sherman_theme_customize_register" );
function ruth_sherman_theme_customize_register( $wp_customize ) {
//=============================================================
// Remove header image and widgets option from theme customizer
//=============================================================
$wp_customize->remove_control( "header_image" );
$wp_customize->remove_panel( "widgets" );
//=============================================================
// Remove Colors, Background image, and Static front page
// option from theme customizer
//=============================================================
$wp_customize->remove_section( "colors" );
$wp_customize->remove_section( "background_image" );
$wp_customize->remove_section( "static_front_page" );
}
但我无法删除“主题选项”、“菜单”和“标题媒体”。有什么帮助吗?
我在做2017年的工作。