To get author name in loop.
<?php the_author(); ?>
To get author name without loop.
$author_id=$post->post_author;
<?php echo the_author_meta( ‘display_name’ , $author_id ); ?>
To get category name.
<?php $post_detail = get_the_terms( $post->ID, ‘taxonomyname’);
$cat_id = $post_detail[0]->term_id;
$cat_name = $post_detail[0]->name;
echo $cat_name; ?>