Skip to content

Commit

Permalink
_s: Adhere to WordPress CSS class naming conventions. See
Browse files Browse the repository at this point in the history
  • Loading branch information
obenland committed Feb 27, 2013
1 parent a1b163e commit d99f4c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comments.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</nav><!-- #comment-nav-before .site-navigation .comment-navigation --> </nav><!-- #comment-nav-before .site-navigation .comment-navigation -->
<?php endif; // check for comment navigation ?> <?php endif; // check for comment navigation ?>


<ol class="commentlist"> <ol class="comment-list">
<?php <?php
/* Loop through and list the comments. Tell wp_list_comments() /* Loop through and list the comments. Tell wp_list_comments()
* to use _s_comment() to format the comments. * to use _s_comment() to format the comments.
Expand All @@ -68,7 +68,7 @@
// If comments are closed and there are comments, let's leave a little note, shall we? // If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?> ?>
<p class="nocomments"><?php _e( 'Comments are closed.', '_s' ); ?></p> <p class="no-comments"><?php _e( 'Comments are closed.', '_s' ); ?></p>
<?php endif; ?> <?php endif; ?>


<?php comment_form(); ?> <?php comment_form(); ?>
Expand Down

0 comments on commit d99f4c8

Please sign in to comment.