*/ function blogwp_upgrade_to_pro($wp_customize) { $wp_customize->add_section( 'sc_blogwp_upgrade', array( 'title' => esc_html__( 'Upgrade to Pro Version', 'blogwp' ), 'priority' => 400 ) ); $wp_customize->add_setting( 'blogwp_options[upgrade_text]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) ); $wp_customize->add_control( new BlogWP_Customize_Static_Text_Control( $wp_customize, 'blogwp_upgrade_text_control', array( 'label' => esc_html__( 'BlogWP Pro', 'blogwp' ), 'section' => 'sc_blogwp_upgrade', 'settings' => 'blogwp_options[upgrade_text]', 'description' => esc_html__( 'Do you enjoy BlogWP? Upgrade to BlogWP Pro now and get:', 'blogwp' ). ''. ' ' . esc_html__( 'Upgrade To BlogWP PRO', 'blogwp' ) . '' ) ) ); }