add_setting( 'premium_features', array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
) );
$premium_features = '
' . esc_html__( 'Premium Version', 'baithak' ) . ':
Do you want to customize your website with more color option, font options, change footer copyright information, premium support and more, then you can check the pro version of the theme.
- Unlimited Color Options
- 1000+ Google Fonts
- Edit Footer Copyright Info
- Premium Support
';
$wp_customize->add_control( new Baithak_Custom_Text( $wp_customize ,'premium_features',array(
'section' => 'baithak_theme_info_section',
'label' => $premium_features
) ) );
}