'ast-comment-meta ast-row ast-comment-author vcard capitalize',
)
);
echo '>';
printf(
astra_markup_open(
'ast-comment-cite-wrap',
array(
'open' => '
',
'class' => 'ast-comment-cite-wrap',
)
) . '%1$s %2$s
',
get_comment_author_link(),
// If current post author is also comment author, make it known visually.
( $comment->user_id === $post->post_author ) ? '' : ''
);
if ( apply_filters( 'astra_single_post_comment_time_enabled', true ) ) {
printf(
esc_attr(
astra_markup_open(
'ast-comment-time',
array(
'open' => '',
'class' => 'ast-comment-time',
)
)
) . '
',
esc_url( get_comment_link( $comment->comment_ID ) ),
esc_attr( get_comment_time( 'c' ) ),
/* translators: 1: date, 2: time */
esc_html( sprintf( __( '%1$s at %2$s', 'astra' ), get_comment_date(), get_comment_time() ) )
);
}
?>