';
echo '' . esc_html__( 'Tags:', 'ave-lite' ) . '';
echo $tags;
echo '
';
}
if ( is_singular( 'attachment' ) ) {
// Parent post navigation.
the_post_navigation(
array(
'prev_text' => _x( 'Published in
%title', 'Parent post link', 'ave-lite' ),
)
);
} elseif ( is_singular( 'post' ) ) {
// Previous/next post navigation.
the_post_navigation(
array(
'next_text' => '' . __( 'Next Post', 'ave-lite' ) . ' ' .
'' . __( 'Next post:', 'ave-lite' ) . '
' .
'%title',
'prev_text' => '' . __( 'Previous Post', 'ave-lite' ) . ' ' .
'' . __( 'Previous post:', 'ave-lite' ) . '
' .
'%title',
)
);
}
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile; // End of the loop.
?>