*/
function boldwp_upgrade_to_pro($wp_customize) {
$wp_customize->add_section( 'boldwp_section_upgrade', array( 'title' => esc_html__( 'Upgrade to Pro Version', 'boldwp' ), 'priority' => 400 ) );
$wp_customize->add_setting( 'boldwp_options[upgrade_text]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) );
$wp_customize->add_control( new BoldWP_Customize_Static_Text_Control( $wp_customize, 'boldwp_upgrade_text_control', array(
'label' => esc_html__( 'BoldWP Pro', 'boldwp' ),
'section' => 'boldwp_section_upgrade',
'settings' => 'boldwp_options[upgrade_text]',
'description' => esc_html__( 'Do you enjoy BoldWP? Upgrade to BoldWP Pro now and get:', 'boldwp' ).
'
' .
'- ' . esc_html__( 'Color Options', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Font Options', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Custom Page Templates', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Custom Post Templates', 'boldwp' ) . '
' .
'- ' . esc_html__( '17 Posts Summaries Styles with Thumbnails/Columns Options', 'boldwp' ) . '
' .
'- ' . esc_html__( '20 Ajax Powered Featured Posts Widgets (Recent/Categories/Tags/PostIDs based) - Each widget can display posts according to Likes/Views/Comments/Dates/... and there are many options.', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Slider Widget (Recent/Categories/Tags/PostIDs based) - It can display posts according to Likes/Views/Comments/Dates/... and there are many options.', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Ajax Powered Tabbed Widget (Recent/Categories/Tags/PostIDs based) - It can display posts according to Likes/Views/Comments/Dates/... and there are many options.', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Layout Options for Posts/Pages - (Sidebar + Content) / (Content + Sidebar) / (One Column) / (One Column + Bottom Sidebar)', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Layout Options for Non-Singular Pages - (Sidebar + Content) / (Content + Sidebar) / (One Column) / (One Column + Bottom Sidebar)', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Width Change Options for Full Website/Main Content/Sidebar', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Custom Settings Panel to Control Options in Each Post', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Custom Settings Panel to Control Options in Each Page', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Ability to Control Layout Style/Website Width/Header Style/Footer Style of each Post/Page', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Capability to Add Different Header Images for Each Post/Page with Unique Link, Title and Description', 'boldwp' ) . '
' .
'- ' . esc_html__( 'News Ticker (Recent/Categories/Tags/PostIDs based) - It can display posts according to Likes/Views/Comments/Dates/... and there are many options.', 'boldwp' ) . '
' .
'- ' . esc_html__( 'About and Social Widget - 60+ Social Buttons', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Header Styles with Width Options - (Logo + Header Banner) / (Full Width Header)', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Footer with Layout Options (1/2/3/4/5/6 Columns)', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Built-in Posts Views Counter System', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Built-in Posts Likes System', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Built-in Infinite Scroll and Load More Button', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Post Share Buttons with Options - 25+ Social Networks are Supported', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Related Posts (Categories/Tags/Author/PostIDs based) with Options', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Author Bio Box with Social Buttons - 60+ Social Buttons', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Ability to Enable/Disable Mobile View from Primary and Secondary Menus', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Ability to add Ads under Post Title and under Post Content', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Ability to Disable Google Fonts - for faster loading', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Sticky Menu/Sticky Sidebar with enable/disable capability', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Post Navigation with Thumbnails', 'boldwp' ) . '
' .
'- ' . esc_html__( 'More Widget Areas', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Built-in Contact Form', 'boldwp' ) . '
' .
'- ' . esc_html__( 'WooCommerce Compatible', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Yoast SEO Breadcrumbs Support', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Search Engine Optimized', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Full RTL Language Support', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Random Posts Button in Header and Footer', 'boldwp' ) . '
' .
'- ' . esc_html__( 'Many Useful Customizer Theme options', 'boldwp' ) . '
' .
'- ' . esc_html__( 'More Features...', 'boldwp' ) . '
' .
'
'.
' ' . esc_html__( 'Upgrade To BoldWP PRO', 'boldwp' ) . ''
) ) );
}