if ( $attributes['displayDate'
] ) { $list_items_markup .=
sprintf( '<time datetime="%1$s" class="wp-block-latest-comments__comment-date">%2$s</time>',
esc_attr( get_comment_date( 'c',
$comment ) ),
date_i18n( get_option( 'date_format'
),
get_comment_date( 'U',
$comment ) ) );
} $list_items_markup .= '</footer>';
if ( $attributes['displayExcerpt'
] ) { $list_items_markup .= '<div class="wp-block-latest-comments__comment-excerpt">' .
wpautop( get_comment_excerpt( $comment ) ) . '</div>';
} $list_items_markup .= '</article></li>';
} } $classnames = array
();
if ( $attributes['displayAvatar'
] ) { $classnames[] = 'has-avatars';
} if ( $attributes['displayDate'
] ) { $classnames[] = 'has-dates';
}