*/
function bestwp_upgrade_to_pro($wp_customize) {
$wp_customize->add_section( 'sc_bestwp_upgrade', array( 'title' => esc_html__( 'Upgrade to Pro Version', 'bestwp' ), 'priority' => 400 ) );
$wp_customize->add_setting( 'bestwp_options[upgrade_text]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) );
$wp_customize->add_control( new BestWP_Customize_Static_Text_Control( $wp_customize, 'bestwp_upgrade_text_control', array(
'label' => esc_html__( 'BestWP Pro', 'bestwp' ),
'section' => 'sc_bestwp_upgrade',
'settings' => 'bestwp_options[upgrade_text]',
'description' => esc_html__( 'Do you enjoy BestWP? Upgrade to BestWP Pro now and get:', 'bestwp' ).
'
' .
'- ' . esc_html__( 'Color Options', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Font Options', 'bestwp' ) . '
' .
'- ' . esc_html__( '10+ Layout Options', 'bestwp' ) . '
' .
'- ' . esc_html__( '10+ Custom Page Templates', 'bestwp' ) . '
' .
'- ' . esc_html__( '10+ Custom Post Templates', 'bestwp' ) . '
' .
'- ' . esc_html__( '10 Different Posts Styles', 'bestwp' ) . '
' .
'- ' . esc_html__( '17 Different Featured Posts Widgets(each widget displays recent/popular/random posts or posts from a given category or tag.)', 'bestwp' ) . '
' .
'- ' . esc_html__( 'News Ticker', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Slider with More Options', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Tabbed Widget', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Social Profiles Widget and About Me Widget', 'bestwp' ) . '
' .
'- ' . esc_html__( '3 Header Layouts (full-width header or header+728x90 ad or header+search box)', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Post Share Buttons', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Related Posts with Thumbnails', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Author Bio Box with Social Buttons', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Sticky Menu/Sticky Sidebars with enable/disable capability', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Built-in Contact Form', 'bestwp' ) . '
' .
'- ' . esc_html__( 'WooCommerce Support', 'bestwp' ) . '
' .
'- ' . esc_html__( 'Search Engine Optimized', 'bestwp' ) . '
' .
'- ' . esc_html__( 'More Customizer options', 'bestwp' ) . '
' .
'- ' . esc_html__( 'More Features...', 'bestwp' ) . '
' .
'
'.
' ' . esc_html__( 'Upgrade To BestWP PRO', 'bestwp' ) . ''
) ) );
}