Breadcrumbs – get the author?
Call echo $GLOBALS[‘wp_query’]->query_vars[‘author_name’]; and it should show you the author. You can also echo $GLOBALS[‘wp_query’]->post->post_author; or echo $GLOBALS[‘wp_query’]->queried_object->post_author;. hope i didn’t mix up with arrays and objects.