BM
Size: a a a
BM
BM
КЗ
AL
<?php if ( $comment->comment_approved == '0' ) {
echo "moderate";?>
<em class="comment-awaiting-moderation">
<?php _e( 'Your comment is awaiting moderation.' ); ?>
</em><br/>
<?php } ?>
AL
АП
AL
BM
АП
AL
AL
AL
BM
АП
AL
AL
function renderReviewsList(){
wp_list_comments( [
'walker' => null,
'max_depth' => '',
'style' => 'div',
'callback' => 'mytheme_comment',
'end-callback' => null,
'type' => 'all',
'reply_text' => 'Reply',
'page' => '',
'per_page' => '',
'avatar_size' => 0,
'reverse_top_level' => null,
'reverse_children' => '',
'format' => 'html5', // или xhtml, если HTML5 не поддерживается темой
'short_ping' => false, // С версии 3.6,
'echo' => true, // true или false
] );
}
AL
AL
AL