';
do_action( 'fl_post_top_meta_open' );
}
// Author
if ( $show_author ) {
echo '';
/* translators: %s: Post Meta Author */
printf( _x( 'By %s', 'Post meta info: author.', '1io' ), '' . get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ) . '' );
echo '';
}
// Date
if ( $show_date ) {
if ( $show_author ) {
echo ' | ';
}
echo '' . get_the_date() . '';
}
// Comments
if ( $comments && $comment_count ) {
if ( $show_author || $show_date ) {
echo ' | ';
}
FLTheme::enqueue_fontawesome();
echo '';
}
// Close Wrapper
if ( $show_author || $show_date || $comments ) {
do_action( 'fl_post_top_meta_close' );
echo '';
}
// Schema Meta
FLTheme::post_schema_meta();