register_panel_type( 'Adviso_WP_Customize_Panel' ); $wp_customize->register_section_type( 'Adviso_WP_Customize_Section' ); $wp_customize->add_panel( new Adviso_WP_Customize_Panel( $wp_customize, 'adviso_featured_panel', array( 'title' => __( 'Featured Areas', 'adviso' ), 'priority' => 15 ) ) ); $wp_customize->add_panel( new Adviso_WP_Customize_Panel( $wp_customize, 'adviso_featured_posts', array( 'title' => __( 'Posts', 'adviso' ), 'priority' => 5, 'panel' => 'adviso_featured_panel' ) ) ); if ( class_exists('woocommerce') ) : $wp_customize->add_panel( new Adviso_WP_Customize_Panel( $wp_customize, 'adviso_featured_products', array( 'title' => __( 'Products', 'adviso' ), 'priority' => 10, 'panel' => 'adviso_featured_panel' ) ) ); endif; // The Sections and their Controls have been defined in their respective files } add_action( 'customize_register', 'adviso_featured_panel_customize_register' );