<?php

if (post_password_required() || !comments_open()) {
    return;
}
?>

<?php 
flat_hook_comments_before();
?>

<div id="comments" class="comments-area">

	<?php 
flat_hook_comments_top();
?>

	<?php 
if (have_comments()) {
    ?>
		<h2 class="comments-title">
			<?php 
    comments_number(__('<span itemprop="interactionCount">0</span> comment', 'flat'), __('<span itemprop="interactionCount">1</span> comment', 'flat'), __('<span itemprop="interactionCount">%</span> comments', 'flat'));
    ?>
		</h2>

		<ol class="comment-list">
			<?php 
    wp_list_comments(array('style' => 'ol', 'format' => 'html5', 'short_ping' => true, 'avatar_size' => 80));
    ?>
		</ol>
Esempio n. 2
0
<?php if ( post_password_required() || ! comments_open() ) { return; } ?>

<?php flat_hook_comments_before(); ?>

<div id="comments" class="comments-area">

	<?php flat_hook_comments_top(); ?>

	<?php if ( have_comments() ) : ?>
		<h2 class="comments-title">
			<?php comments_number( __( '<span itemprop="interactionCount">0</span> comment', 'flat' ), __( '<span itemprop="interactionCount">1</span> comment', 'flat' ), __( '<span itemprop="interactionCount">%</span> comments', 'flat' ) ); ?>
		</h2>
		
		<ol class="comment-list">
			<?php
				wp_list_comments( array(
					'style'       => 'ol',
					'format'      => 'html5',
					'short_ping'  => true,
					'avatar_size' => 80,
				) );
			?>
		</ol>

		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
		<nav class="navigation comment-navigation" role="navigation">
			<h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'flat' ); ?></h1>
			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'flat' ) ); ?></div>
			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'flat' ) ); ?></div>
		</nav>
		<?php endif; ?>