add_section( 'theme_info' , array(
'title' => __( 'Demo and Documentation' , 'bootstrap-blog' ),
'priority' => 6,
) );
$wp_customize->add_setting( 'setup_instruction', array(
'sanitize_callback' => 'sanitize_text_field'
) );
$wp_customize->add_control( new Bootstrap_Blog_Theme_Info( $wp_customize, 'setup_instruction', array(
'settings' => 'setup_instruction',
'section' => 'theme_info',
'description' => __( 'Check out step-by-step tutorial to create your website like the demo of Bootstrap Blog Pro WordPress theme.', 'bootstrap-blog'),
) ) );
$wp_customize->add_setting( 'theme_info_theme', array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
) );
$theme_info = '';
$theme_info .= '' . __( 'Click Here', 'bootstrap-blog' ) . '
';
$theme_info .= '' . __( 'Click Here', 'bootstrap-blog' ) . '
';
$theme_info .= '' . __( 'Click Here', 'bootstrap-blog' ) . '
';
$wp_customize->add_control( new Bootstrap_Blog_Theme_Info( $wp_customize ,'theme_info_theme',array(
'section' => 'theme_info',
'description' => $theme_info
) ) );
}
add_action( 'customize_register', 'bootstrap_blog_customizer_theme_info' );