How to Create Author.php Page For Your WordPress Blog

If you have a multi author blog, then its good to give as much exposure to the post author as you can. One of the way to give exposure is to create an author.php page to display the author information. If you do not have author.php file in your WordPress theme, then WordPress looks for Archive.php file. Below is a simple tutorial to show the author’s name, website, email id and at last it will show all the posts. Before starting this tutorial I assume that you know basics about WordPress and know how to use FTP client. You know how to install WordPress themes. Lets start :

First open your archive.php page and create a duplicate file of it and rename it as author.php. You can use any FTP client to do it.

Now, open author.php file and paste the following code where you want to display name, website and contact info and bio.

Articles by <?php the_author(); ?>
Author Website: <?php the_author_url(); ?>
Author Email: <?php the_author_email(); ?>
Author Bio: <?php the_author_description(); ?>

Save your work and upload the file to your Themes folder located in wp-content. Now, someone will click on the post author name, author.php page will open giving all the information.

Note : Please note that author’s name, website and email id will be pulled from the information filled by the author in WordPress profile option.

Related Posts via Categories

One Comment

  1. I have a small description under the post about the author like name, author url and the bio. I think it’s very important to promote your guest posts and authors as it will also encourage them to publish more on your site and also helps visitors.

Leave a Reply