- Home
- Uncategorized
- Obtain the Author Name for WordPress Post
Obtain the Author Name for WordPress Post
Many times we will need to display the author’s name for an article on our WordPress site. Thankfully the WordPress team made this very each with a custom php function called get_the_author which prints the name of the author associated with the post
The PHP Code
<?php echo get_the_author(); ?>