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

' . esc_html__( 'Premium Version', 'ca-simplex-blog' ) . ':

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

'; $wp_customize->add_control( new ca_simplex_blog_Custom_Text( $wp_customize ,'premium_features',array( 'section' => 'ca_simplex_blog_theme_info_section', 'label' => $premium_features ) ) ); }