*/ function boxwp_upgrade_to_pro($wp_customize) { $wp_customize->add_section( 'sc_boxwp_upgrade', array( 'title' => esc_html__( 'Upgrade to Pro Version', 'boxwp' ), 'priority' => 400 ) ); $wp_customize->add_setting( 'boxwp_options[upgrade_text]', array( 'default' => '', 'sanitize_callback' => '__return_false', ) ); $wp_customize->add_control( new BoxWP_Customize_Static_Text_Control( $wp_customize, 'boxwp_upgrade_text_control', array( 'label' => esc_html__( 'BoxWP Pro', 'boxwp' ), 'section' => 'sc_boxwp_upgrade', 'settings' => 'boxwp_options[upgrade_text]', 'description' => esc_html__( 'Do you enjoy BoxWP? Upgrade to BoxWP Pro now and get:', 'boxwp' ). ''. ' ' . esc_html__( 'Upgrade To BoxWP PRO', 'boxwp' ) . '' ) ) ); }