add_section( 'buswick_theme_info_section' , array(
'title' => esc_html__( '❂ Theme Info' , 'buswick' ),
'priority' => 2
) );
$wp_customize->add_setting( 'theme_info', array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
) );
$theme_info = '';
$theme_info .= '' . esc_html__( 'Click Here', 'buswick' ) . '
';
$theme_info .= '' . esc_html__( 'Click Here', 'buswick' ) . '
';
$theme_info .= '' . esc_html__( 'Click Here', 'buswick' ) . '
';
$theme_info .= '' . esc_html__( 'Click Here', 'buswick' ) . '
';
$wp_customize->add_control( new Buswick_Custom_Text( $wp_customize ,'theme_info',array(
'section' => 'buswick_theme_info_section',
'label' => $theme_info
) ) );
}