esc_html( $prev, 'blogger-buzz'),
'next_text' => esc_html( $next, 'blogger-buzz'),
)
);
else:
the_post_navigation(array(
'prev_text' => esc_html__( 'Previous', 'blogger-buzz'),
'next_text' => esc_html__( 'Next', 'blogger-buzz'),
));
endif;
endif;
$author_description = get_theme_mod( 'blogger_buzz_enable_author_description', 'enable' );
if( !empty( $author_description ) && $author_description == 'enable' ){
/**
* displaying author bio
*/
get_template_part( 'template-parts/content', 'author' );
}
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>