get author in blog posts?

This will be somewhat dependent on where your single post view is stored, but you’d be looking to add something to the effect of:

<?php

echo __('Written by', 'text_domain') .' <a href="'. get_author_posts_url(get_the_author_meta('ID')) .'" rel="author" class="fn">'. get_the_author() .'</a>';