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

' . esc_html__( 'Premium Version', 'blog-sphere' ) . ':

' . 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.', 'blog-sphere' ) . '

'; $wp_customize->add_control( new Blog_Sphere_Custom_Text( $wp_customize ,'premium_features',array( 'section' => 'blog_sphere_theme_info_section', 'label' => $premium_features ) ) ); } // ------------------------Theme More Premium Section Code-------