File: /home/xuvi7odgswsg/public_html/wp-content/themes/bb-theme/includes/post-top-meta.php
<?php
// Wrapper
if ( $show_author || $show_date || $comments ) {
echo '<div class="fl-post-meta fl-post-meta-top">';
do_action( 'fl_post_top_meta_open' );
}
// Author
if ( $show_author ) {
echo '<span class="fl-post-author">';
/* translators: %s: Post Meta Author */
printf( _x( 'By %s', 'Post meta info: author.', 'fl-automator' ), '<a href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '"><span>' . get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ) . '</span></a>' );
echo '</span>';
}
// Date
if ( $show_date ) {
if ( $show_author ) {
echo '<span class="fl-sep"> | </span>';
}
echo '<span class="fl-post-date">' . get_the_date() . '</span>';
}
// Comments
if ( $comments && $comment_count ) {
if ( $show_author || $show_date ) {
echo '<span class="fl-sep"> | </span>';
}
FLTheme::enqueue_fontawesome();
$comments_txt = __( 'Comments', 'fl-automator' );
$none = sprintf( '<span aria-label="%s: 0">0 <i aria-hidden="true" class="fas fa-comment"></i></span>', $comments_txt );
$one = sprintf( '<span aria-label="%s: 1">1 <i aria-hidden="true" class="fas fa-comment"></i></span>', $comments_txt );
$more = sprintf( '<span aria-label="%s: %%">%% <i aria-hidden="true" class="fas fa-comments"></i></span>', $comments_txt );
echo '<span class="fl-comments-popup-link">';
comments_popup_link( $none, $one, $more );
echo '</span>';
}
// Close Wrapper
if ( $show_author || $show_date || $comments ) {
do_action( 'fl_post_top_meta_close' );
echo '</div>';
}
// Schema Meta
FLTheme::post_schema_meta();