add_section( 'birthday_blast_theme_info_section' , array( 'title' => esc_html__( 'Theme Information' , 'birthday-blast' ), 'priority' => 2 ) ); $wp_customize->add_setting( 'theme_info', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info = ''; $theme_info .= '' . esc_html__( 'Click Here', 'birthday-blast' ) . '
'; $theme_info .= '' . esc_html__( 'Click Here', 'birthday-blast' ) . '
'; $theme_info .= '' . esc_html__( 'Click Here', 'birthday-blast' ) . '
'; $theme_info .= '' . esc_html__( 'Click Here', 'birthday-blast' ) . '
'; $theme_info .= '' . esc_html__( 'Click Here', 'birthday-blast' ) . '
'; $wp_customize->add_control( new Birthday_Blast_Custom_Text( $wp_customize ,'theme_info',array( 'section' => 'birthday_blast_theme_info_section', 'label' => $theme_info ) ) ); } //-------------------------Premium Information Display Code------ add_action( 'customize_register', 'birthday_blast_customizer_premium_features' ); function birthday_blast_customizer_premium_features( $wp_customize ) { $wp_customize->add_setting( 'premium_features', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $premium_features = '

' . esc_html__( 'Premium Version', 'birthday-blast' ) . ':

' . esc_html__( 'Would you like to enhance the appearance and functionality of your website with an extended range of color options, font styles, and the ability to modify your footer copyright information? Consider upgrading to the pro version of your current theme, which may also include premium support and additional features to further customize your website.', 'birthday-blast' ) . '

'; $wp_customize->add_control( new Birthday_Blast_Custom_Text( $wp_customize ,'premium_features',array( 'section' => 'birthday_blast_theme_info_section', 'label' => $premium_features ) ) ); } // ------------------------Theme More Premium Section Code------- add_action( 'customize_register', 'birthday_blast_customizer_theme_premium_section' ); function birthday_blast_customizer_theme_premium_section( $wp_customize ) { $wp_customize->add_section( 'birthday_blast_theme_premium_info_section' , array( 'title' => esc_html__( 'Color / Typography Settings' , 'birthday-blast' ), 'priority' => 2 ) ); $wp_customize->add_setting( 'theme_info_two', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info_two = ''; $theme_info_two .= '

' . esc_html__( 'To use This Settings Upgrade to Premium Version', 'birthday-blast' ) . ':

' . esc_html__( 'Upgrade to Premium Version', 'birthday-blast' ) . '
'; $wp_customize->add_control( new Birthday_Blast_Custom_Text( $wp_customize ,'theme_info_two',array( 'section' => 'birthday_blast_theme_premium_info_section', 'label' => $theme_info_two ) ) ); }