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