add_section( 'theme_info' , array( 'title' => __( 'Theme Information' , 'business-ezone' ), 'priority' => 6, )); // Theme info $wp_customize->add_setting( 'setup_instruction', array( 'sanitize_callback' => 'wp_kses_post' ) ); $wp_customize->add_control( new business_ezone_Theme_Info( $wp_customize, 'setup_instruction', array( 'settings' => 'setup_instruction', 'section' => 'theme_info', 'label' => __('Some Important Links','business-ezone'), ) ) ); $wp_customize->add_setting('theme_info_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); $theme_info = ''; $theme_info .= '' . __( 'here', 'business-ezone' ) . '
'; $theme_info .= '' . __( 'here', 'business-ezone' ) . '
'; $theme_info .= '' . __( 'here', 'business-ezone' ) . '
'; $theme_info .= '' . __( 'here', 'business-ezone' ) . '
'; $wp_customize->add_control( new Business_Ezone_Theme_Info( $wp_customize, 'theme_info_theme', array( 'section' => 'theme_info', 'description' => $theme_info ) ) ); $wp_customize->add_setting('theme_info_more_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); } add_action( 'customize_register', 'business_ezone_customizer_theme_info' ); if( class_exists( 'WP_Customize_control' ) ){ class Business_Ezone_Theme_Info extends WP_Customize_Control { /** * Render the content on the theme customizer page */ public function render_content() { ?>