Here’s how to obtain and get the author ID outside the WordPress loop:
1 2 3 4 | <?php global $post; $author_id=$post->post_author; ?> |
Then it is possible to us the_author_meta
:
1 2 3 | <?php the_author_meta( 'user_nicename', $author_id ); ?> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.