';
	jet_elements_post_tools()->get_post_author( array(
		'visible' => $this->get_attr( 'show_author' ),
		'class'   => 'posted-by__author',
		'prefix'  => esc_html__( 'Posted by ', 'jet-elements' ),
		'html'    => '
%1$s%5$s%6$s',
		'echo'    => true,
	) );
	jet_elements_post_tools()->get_post_date( array(
		'visible' => $this->get_attr( 'show_date' ),
		'class'   => 'post__date-link',
		'icon'    => '',
		'html'    => '
%1$s',
		'echo'    => true,
	) );
	if ( 'yes' === $this->get_attr( 'show_mod_date' ) ) {
		echo sprintf( '
%1$s', get_the_modified_date() ); // phpcs:ignore
	}
	jet_elements_post_tools()->get_post_comment_count( array(
		'visible' => $this->get_attr( 'show_comments' ),
		'class'   => 'post__comments-link',
		'icon'    => '',
		'prefix'  => esc_html__( 'Comments: ', 'jet-elements' ),
		'html'    => '',
		'echo'    => true,
	) );
echo '
 ';