Image of the complete guide to adding author info in WordPress

The Complete Guide to Adding Author Info in WordPress

You have all these blog posts and articles packed with awesome content on your website, and yet some or all do not have any author information in sight. Here's the thing, research actually shows that readers appreciate authenticity and content they can personally connect with when they're browsing through websites online. They want to know who’s behind the words, just like flipping to the back of a book to learn about the author.

Showcasing author information is a powerful way to build trust, reinforce transparency, and elevate your brand as a freelancer who just started out or as a business owner with an established website. Make sure not to neglect this step!

Regardless of whether you're using a premium theme or a minimalist builder, understanding how your WordPress setup handles author visibility is a must for boosting engagement and improving SEO.

Let’s dive into three practical methods for adding author details to your WordPress site, using theme settings, plugins, and custom code.

 

Why Author Information Matters

  1. It Builds Trust and Human Connection

Displaying the author’s name (also known as byline, more on this below) adds credibility. According to research from Nielsen Norman Group, readers are more likely to trust content when they know who wrote it, especially when the author has relevant expertise or a professional background.

  1. It Strengthens SEO and Authority

Google’s E-E-A-T guidelines emphasize the importance of authorship. What does E-E-A-T stand for, you ask? Experience, Expertise, Authoritativeness and Trust.

A complete author box not only improves SEO but also enables schema markup, helping your content stand out in search results.

Author information boosts accountability, encourages interaction, and signals authenticity to both users and search engines.

 

What Is a Byline?

A byline is a brief credit line that names the author of a written piece, usually positioned at the top and/or bottom of an article or blog post. It often includes the author's name, and in more detailed formats, may feature their photo, job title, bio, and links to social media or portfolio sites.

Bylines serve as a digital signature, giving credit to the creator and helping readers connect with the person behind the words. In the context of WordPress, a byline can be a simple name display or a fully styled author box, depending on your theme or plugin setup.

 

🛠️ Three Ways to Add Author Info in WordPress

Method 1: Use Your Theme’s Built-In Settings

Many WordPress themes include a simple toggle to display author names, no plugins or coding required.

Steps:

  • Navigate to Appearance > Customize
  • Go to Theme Options or to Blog > Single Post (location varies per theme)
  • Enable “Show Author” or “Author Info” (wording varies per theme)
  • Save and preview your changes

Some themes that support this feature (among many others):

View some free WordPress themes that have that author bio setting.

Pros of depending on a theme:

  • Easy for beginners
  • Seamless design integration
  • No impact on site performance

Cons of depending on a theme:

  • Limited customization
  • Not all themes offer this option
  • May lack advanced bio features

Method 2: Add Author Info Manually with Code

If you're comfortable with PHP, or with following instructions, you can manually insert author details into your theme files. Just make sure to do so in the child theme.

Where to add:

  • single.php or content-single.php

Useful functions:

php
the_author();
get_the_author_meta('display_name');

Use Case: Running a custom portfolio site? Manual coding lets you control layout and styling, perfect for showcasing your name, title, photo, and contact info without relying on plugins.

Pros of adding author manually using code:

  • Full design control
  • Lightweight and efficient
  • Ideal for advanced users

Cons of adding author manually using code:

  • Requires technical knowledge
  • Theme updates may overwrite changes unless a child theme is used (see above)

Bonus tip, structure your author info for rich snippets to improve visibility in search results.

Method 3: Use WordPress Plugins for Flexibility

Not a coder? WordPress plugins make it easy to add and customize author boxes.

🔧 Recommended WordPress Plugins:

  1. Simple Author Box
  • Responsive design
  • Social icons and Gravatar support
  • Customizable via WordPress Customizer
  1. WP Author Bio
  • Lightweight and easy to use
  • Supports multiple authors
  1. Co-Authors Plus
  • Assign multiple authors to one post
  • Integrates with WordPress user profiles
  • Requires theme tweaks for full functionality

Pros of using WordPress plugins:

  • No coding required
  • Customizable layouts
  • Widget and shortcode support

Cons of using WordPress plugins:

  • Adds plugin overhead, which may use more resources and potentially slow down your site
  • Some features may require premium versions
  • Compatibility varies per  theme

💡 Pro Tip, use Tailwind UI blocks to style your author section like a sleek resume, clean and professional.

 

✅ Quick Setup Checklist

✔️ Confirm your theme supports author display
✔️ Install a reliable author box WordPress plugin if needed
✔️ Fill out author details in your WordPress profile
✔️ Use Tailwind or design tools for visual polish
✔️ Link to social media, portfolio, or freelancer profile

 

Hosting That Supports Author Features (and More)

If you're working on your WordPress site and wondering how to get author info showing up properly, we get it, it can be a bit of a maze. At Earth Girl Hosting, we're here to make things easier. Our hosting works smoothly with the WordPress plugins and themes that help you showcase your authors, and if you’re not sure which ones to use, just ask, we’ll point you in the right direction or even help you get it set up.

View Hosting Plans

 

Can Authors Use Pseudonyms in WordPress?

Yes, and it’s quite common, fortunately and unfortunately 😊. A pseudonym, also known as a pen name or alternate author name, allows writers to publish content without revealing their real identity. This can be useful for privacy, creative branding, or separating different writing personas.

In WordPress, you can easily set a pseudonym by editing the user profile:

  • Go to Users > All Users
  • Click “Edit” on the desired profile
  • Set a Nickname
  • Choose that custom nickname under “Display name publicly as”.

Whether you're writing as yourself, your brand, a professional alias, a made-up character, or just don’t feel like using your real name, WordPress lets you pick how your name shows up on your posts. Quick and easy!

 

Final Thoughts, Add the Author and Build the Trust

Running a blog, solo or with a team, means your content speaks for you. Adding author info builds trust, increases search visibility (SEO), and gives readers someone real to connect with by humanizing your content. It’s a small detail that makes a big difference.

Three ways to do it:

  • Theme settings, easy
  • Manual code, customizable
  • Plugins, flexible

Don’t let great content go unrecognized, put a name and face to your words.

Here's a small challenge for you. Go through your blog posts and see if you can spot some without an author. If you do, go ahead and add that in!

Afterward, if you have some stats you'd like to share with us, such as "Oh my! I have a hundred articles and not a single author name!", go ahead and write it below. We'd love to hear your experience.

 

🙋‍♂️ FAQs

  1. My theme doesn’t support author names, what now? Add code manually, use a plugin like Simple Author Box, or switch themes (drastic choice, not recommended unless you're not pleased with your current theme).
  2. Can I show author names only on blog posts? Yes. Use conditional code:

php
if (is_single() && 'post' == get_post_type()) {
  the_author();
}

  1. How do I change an author’s display name? Go to Users > All Users, edit the profile, and select a new display name.
  2. How do I link the author name to their archive page?

php
<a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>">
  <?php the_author(); ?>
</a>

  1. Will WordPress plugins slow down my site? Not if you choose lightweight, well-reviewed plugins. Test performance with GTmetrix or PageSpeed Insights after installing a plugin.
  2. Can I show author info without coding? Yes, use theme settings or install a WordPress plugin.
  3. Best WordPress plugin for author bios? Simple Author Box and Molongui Author Box are top picks.
  4. Can I manually add author info with code? Absolutely. Use the_author() in your theme files.
  5. Why show the author’s name? It builds trust, boosts SEO, and adds credibility.
  6. Where should I place the author box? After the post content or below the title, where readers expect it.

About Earth Girl Hosting

Earth Girl Hosting offers web hosting for any type of website, including WordPress, OpenCart, Joomla!, Drupal, and more. Free SSL, free daily backups, 24/7/365 North American support by phone & ticket.

Leave a Comment





This site uses Akismet to reduce spam. Learn how your comment data is processed.