Advertisement
Guest User

Untitled

a guest
Feb 28th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php if ( have_comments() ) : ?>
  2. <aside id="comments">
  3. <?php if ( post_password_required() ) : ?>
  4. <p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.', 'pinboard' ); ?></p>
  5. <?php return; ?>
  6. <?php endif; ?>
  7. <h3 id="comments-title"><?php comments_number( __( 'No Responses to', 'pinboard' ), __( 'One Response to', 'pinboard' ), __( '% Responses to', 'pinboard' ) ); ?> &quot;<?php the_title(); ?>&quot;</h3>
  8.  
  9. <div id="comments-nav-above" class="navigation">
  10. <div class="nav-prev"><?php previous_comments_link() ?></div>
  11. <div class="nav-next"><?php next_comments_link() ?></div>
  12. <div class="clear"></div>
  13. </div>
  14.  
  15. <ol class="commentlist">
  16. <?php wp_list_comments( array( 'style' => 'ol', 'avatar_size' => 64 ) ); ?>
  17. </ol>
  18.  
  19. <div id="comments-nav-below" class="navigation">
  20. <div class="nav-prev"><?php previous_comments_link() ?></div>
  21. <div class="nav-next"><?php next_comments_link() ?></div>
  22. <div class="clear"></div>
  23. </div>
  24. </aside><!-- #comments -->
  25. <?php endif; ?>
  26.  
  27. <?php if ( have_comments() && ! comments_open() ) : ?>
  28. <div id="respond">
  29. <p class="nocomments"><?php _e( 'Comments are closed.', 'pinboard' ) ?></p>
  30. </div><!-- #comments -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement