HTML
1
Вклад в тег
function kurs_comment( $comment, $args, $depth ){
?><div <?php comment_class() ?> id="comment-<?php comment_ID() ?>">
<div class="comment-body">
<?php echo get_avatar( $comment, 60, '', '', array( 'class' => 'comment-avatar' ) ) ?>
<div class="comment-content">
<span class="comment-author"><?php comment_author() ?></span>
<span class="comment-date"><?php comment_date( 'j F Y в H:i' ) ?></span>
<div class="comment_body"><?php comment_text() ?></div>
</div>
</div>
<?php // без закрывающего </div> (!)
}
function kurs_end_comment( $comment, $args, $depth ){
echo '</div>';
}
wp_list_comments( array(
'callback' => 'misha_comment',
'end-callback' => 'misha_end_comment'
) );