如何从Customizer中删除“Active Theme”部分? 时间:2018-02-12 作者:Amit Jugran 我想从customizer中删除/禁用“活动主题”部分。最好的方法是什么? 2 个回复 SO网友:swissspidy 未经测试,但这应该可以做到:function wpse293862_remove_themes_panel() { global $wp_customize; $wp_customize->remove_panel( \'themes\' ); } add_action( \'customize_register\', \'wpse293862_remove_themes_panel\', 11 ); SO网友:Aamer Shahzad 要完全卸下面板,请使用WP_Customize_Manager 班remove_panel( string $id ) 方法参考https://developer.wordpress.org/reference/classes/wp_customize_manager/function themeslug_customizer_remove( $wp_customize ) { $wp_customize->remove_panel( \'themes\' ); } add_action( \'customize_register\', \'themeslug_customizer_remove\' ); 结束 文章导航