DigitalRefresh
11/13/2018 - 7:28 PM

Remove Customizer Panels and Sections #cust #client #hide

// Remove Customizer Panels and Sections
function my_customize_register() {
  global $wp_customize;
  
    // Remove Panels
\!h    $wp_customize->remove_panel( '__fl-header__' );
    
    // Remove Sections
\!h    $wp_customize->remove_section( '__fl-presets__' );
    
    // Rename Panels
\!h    $wp_customize->get_panel('__fl-general__')->title = __( '__General (Branding)__' );
      
    // Rename Sections
\!h    $wp_customize->get_section('__fl-heading-font__')->title = __( '__Heading Text__' );

  }
add_action( 'customize_register', 'my_customize_register', 11 );