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