Hi @ottens,
Not out of the box, no. You would have to create a child theme, copy the file singular.php to it and add output of the author name within the .meta element.
— Anders
-
This reply was modified 7 years, 6 months ago by
Anders Norén.
Thanks!
In case anyone is interested, here’s what I did:
<div class="meta">
<?php
echo __( 'In', 'hamilton' ) . ' '; the_category( ', ' ); ?>
<span>•</span>
<?php
echo __( 'By', 'hamilton' ) . ' '; the_author_posts_link();
if ( comments_open() ) : ?>
Great theme!
-
This reply was modified 7 years, 6 months ago by
Nick Ottens.