forked from mirror/_s
_s: Adhere to WordPress CSS class naming conventions. See
http://make.wordpress.org/core/handbook/coding-standards/css/#selectors for details.
This commit is contained in:
parent
a1b163e8ea
commit
d99f4c8115
|
@ -42,7 +42,7 @@
|
|||
</nav><!-- #comment-nav-before .site-navigation .comment-navigation -->
|
||||
<?php endif; // check for comment navigation ?>
|
||||
|
||||
<ol class="commentlist">
|
||||
<ol class="comment-list">
|
||||
<?php
|
||||
/* Loop through and list the comments. Tell wp_list_comments()
|
||||
* to use _s_comment() to format the comments.
|
||||
|
@ -68,7 +68,7 @@
|
|||
// 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' ) ) :
|
||||
?>
|
||||
<p class="nocomments"><?php _e( 'Comments are closed.', '_s' ); ?></p>
|
||||
<p class="no-comments"><?php _e( 'Comments are closed.', '_s' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php comment_form(); ?>
|
||||
|
|
Reference in New Issue