', '' .esc_html( $single_title_tag ). '>' );
endif;
$single_author_option = BIT\blogistic_get_customizer_option( 'single_author_option' );
$single_date_option = BIT\blogistic_get_customizer_option( 'single_date_option' );
$single_read_time_option = BIT\blogistic_get_customizer_option( 'single_read_time_option' );
$single_comments_option = BIT\blogistic_get_customizer_option( 'single_comments_option' );
if( $single_author_option || $single_date_option || $single_read_time_option || $single_comments_option ) :
?>
' . blogistic_post_read_time( get_the_content() ) . '';
if( BIT\blogistic_get_customizer_option( 'single_read_time_icon' ) ) {
$single_read_time_icon = BIT\blogistic_get_customizer_option( 'single_read_time_icon' );
$icon_html = blogistic_get_icon_control_html($single_read_time_icon);
if( $icon_html ) $read_time = $icon_html . $read_time;
}
echo '' .$read_time. '';
endif;
if( BIT\blogistic_get_customizer_option( 'single_comments_option' ) ) :
$comments_num = '';
if( BIT\blogistic_get_customizer_option( 'single_comments_icon' ) ) {
$single_comments_icon = BIT\blogistic_get_customizer_option( 'single_comments_icon' );
$icon_html = blogistic_get_icon_control_html($single_comments_icon);
if( $icon_html ) $comments_num = $icon_html . $comments_num ;
}
echo '';
endif;
?>