Remove _s_comment
This commit is contained in:
parent
bcde97082b
commit
cb52da6f23
2 changed files with 5 additions and 67 deletions
12
comments.php
12
comments.php
|
@ -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 -->
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue