Remove _s_comment

This commit is contained in:
Ulrich Pogson 2013-12-22 21:33:16 +01:00
parent bcde97082b
commit cb52da6f23
2 changed files with 5 additions and 67 deletions

View file

@ -42,13 +42,11 @@ if ( post_password_required() ) {
<ol class="comment-list">
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use _s_comment() to format the comments.
* If you want to override this in a child theme, then you can
* define _s_comment() and that will be used instead.
* See _s_comment() in inc/template-tags.php for more.
*/
wp_list_comments( array( 'callback' => '_s_comment' ) );
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 74,
) );
?>
</ol><!-- .comment-list -->