Hello - I'd like to add "by <author" piece of text to each post's entry head right next to the comment count and category.
Screenshot of a photoshoop that explains what I'm trying to do:
http://imgmi.net/c/c0e8a4a4.png
I know the fix would involve adding another entry to this piece of code on basically every page that displays posts:
<div class="entry-head">
<span class="comments"><?php comments_popup_link(__('No Comments','habitat'), __('1 Comment','habitat'), __('% Comments','habitat')); ?></span>
<span class="categories"><?php the_category(', '); echo $terms; ?></span>
</div>
I think a new CSS rule would need to be created. Can anyone help me out with how to do this?














