File: /home/mmickelson/martyknows.com/wp-content/themes/p2/comments.php
<?php
/**
* Template part for displaying comments.
*
* @package P2
*/
?>
<?php if ( post_password_required() )
return;
?>
<ul id="comments-<?php the_id(); ?>" class="commentlist inlinecomments">
<?php if ( get_comments_number() > 0 ) : ?>
<?php wp_list_comments( array( 'callback' => 'p2_comments' ) ); ?>
<?php endif; ?>
</ul>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<div class="navigation">
<p class="nav-older"><?php previous_comments_link( __( '← Older Comments', 'p2' ) ); ?></p>
<p class="nav-newer"><?php next_comments_link( __( 'Newer Comments →', 'p2' ) ); ?></p>
</div>
<?php endif; ?>