add_section( 'theme_upsell', array( 'title' => esc_html__( 'Unlock More Features', 'bloglex' ), 'priority' => 1, ) ); $wp_customize->add_setting( 'theme_pro_features', array( 'sanitize_callback' => '__return_true', ) ); $wp_customize->add_control( new Bloglex_Upsell( $wp_customize, 'theme_pro_features', array( 'section' => 'theme_upsell', 'type' => 'upsell', ) ) ); $wp_customize->add_section( new Bloglex_Section_Features_List( $wp_customize, 'theme_header_features', array( 'title' => esc_html__( 'More Options on Bloglex Pro!', 'bloglex' ), 'features_list' => array( esc_html__( 'Dark mode options', 'bloglex' ), esc_html__( 'Menu badge options', 'bloglex' ), esc_html__( '17+ Preloader options', 'bloglex' ), esc_html__( 'More color options', 'bloglex' ), esc_html__( '404 page options', 'bloglex' ), esc_html__( '... and many other premium features', 'bloglex' ), ), 'panel' => 'header_options_panel', 'priority' => 999, ) ) );