如何从Customizer中删除“Active Theme”部分?

时间:2018-02-12 作者:Amit Jugran

我想从customizer中删除/禁用“活动主题”部分。最好的方法是什么?enter image description here

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_Managerremove_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\' );

结束

相关推荐

Responsive Admin Themes

我在看这个管理主题的示例(http://themepixels.com/main/themes/demo/webpage/shamcey/dashboard.html). 至于标签为“Navigation”的左侧管理栏,有没有一种方法可以在不使用插件的情况下实现这种类型的左侧仪表板管理菜单?我想用css、js或Jquery来实现这一点,任何处理编码的东西都可以。