Last active
August 29, 2015 14:06
-
-
Save igmoweb/0e9d9f6f086ab34f2cfd to your computer and use it in GitHub Desktop.
Basic Comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( post_password_required() ) | |
return; | |
?> | |
<div id="comments" class="comments-area"> | |
<?php if ( comments_open() && get_comments_number() ): ?> | |
<?php if ( have_comments() ) : ?> | |
<ul class="commentlist"> | |
<?php wp_list_comments(); ?> | |
</ul> | |
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> | |
<nav class="comment-navigation"> | |
<div class="nav-previous"><?php previous_comments_link(); ?></div> | |
<div class="nav-next"><?php next_comments_link(); ?></div> | |
</nav> | |
<?php endif; ?> | |
<?php endif; ?> | |
<?php comment_form(); ?> | |
<?php endif; ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment