Sometimes we need to show the post author Name and Author page Link manually within the HTML codes.
For that, we have to use the below PHP code within the post WP Query.
Author Name: <?php the_author(); ?> Author Link: <?php echo get_author_posts_url( get_the_author_meta( '$post->ID' ) ); ?>
That’s it, enjoy!