example (to replace the previously posted section in content-entry.php):
<div class="entry-meta entry-meta-bottom">
<time class="entry-date" itemprop="datePublished" datetime="<?php echo esc_attr( get_the_date( 'c' ) ); ?>"><?php echo esc_html( get_the_date() ); ?></time>
<span class="author"> <?php the_author_posts_link(); ?></span>
<a href="<?php echo esc_url( get_comments_link() ); ?>" class="entry-comments-no"><?php comments_number(); ?></a>
</div>
puts the author link in the middle between date and comments;
you can use .author
in the CSS to style it if needed.