Advertisement
programthis

comments

May 4th, 2011
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.01 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying Comments.
  4.  *
  5.  * The area of the page that contains both current comments
  6.  * and the comment form.  The actual display of comments is
  7.  * handled by a callback to spustatheme_comment which is
  8.  * located in the functions.php file.
  9.  *
  10.  * @package WordPress
  11.  * @subpackage Twenty_Ten
  12.  * @since Twenty Ten 1.0
  13.  */
  14. ?>
  15.  
  16.             <div id="comments">
  17. <?php if ( post_password_required() ) : ?>
  18.                 <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'spustatheme' ); ?></p>
  19.             </div><!-- #comments -->
  20. <?php
  21.         /* Stop the rest of comments.php from being processed,
  22.          * but don't kill the script entirely -- we still have
  23.          * to fully load the template.
  24.          */
  25.         return;
  26.     endif;
  27. ?>
  28.  
  29. <?php
  30.     // You can start editing here -- including this comment!
  31. ?>
  32.  
  33. <?php if ( have_comments() ) : ?>
  34.             <h4><?php
  35.             printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'spustatheme' ),
  36.             number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
  37.             ?></h4>
  38.  
  39. <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
  40.             <div class="navigation">
  41.                 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'spustatheme' ) ); ?></div>
  42.                 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'spustatheme' ) ); ?></div>
  43.             </div> <!-- .navigation -->
  44. <?php endif; // check for comment navigation ?>
  45.  
  46.             <ol class="commentlist">
  47.                 <?php
  48.                     /* Loop through and list the comments. Tell wp_list_comments()
  49.                      * to use spustatheme_comment() to format the comments.
  50.                      * If you want to overload this in a child theme then you can
  51.                      * define spustatheme_comment() and that will be used instead.
  52.                      * See spustatheme_comment() in spustatheme/functions.php for more.
  53.                      */
  54.                     wp_list_comments( array( 'callback' => 'spustatheme_comment' ) );
  55.                 ?>
  56.             </ol>
  57.  
  58. <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
  59.             <div class="navigation">
  60.                 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'spustatheme' ) ); ?></div>
  61.                 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'spustatheme' ) ); ?></div>
  62.             </div><!-- .navigation -->
  63. <?php endif; // check for comment navigation ?>
  64.  
  65. <?php else : // or, if we don't have comments:
  66.  
  67.     /* If there are no comments and comments are closed,
  68.      * let's leave a little note, shall we?
  69.      */
  70.     if ( ! comments_open() ) :
  71. ?>
  72.     <p class="nocomments"><?php _e( '', 'spustatheme' ); ?></p>
  73. <?php endif; // end ! comments_open() ?>
  74.  
  75. <?php endif; // end have_comments() ?>
  76.  
  77.  
  78. <?php comment_form(array('comment_notes_after' => '')); ?>
  79.  
  80. </div><!-- #comments -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement