*/ 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__( 'Upgrade To BestWP PRO', 'bestwp' ) . '' ) ) ); }