How to Change the Gravatar Image Size in WordPress

Do you want to change the Gravatar image size in WordPress?

Gravatar is a service that connects a user’s email address with a picture. WordPress themes show Gravatars at a set size, but you may prefer to make these images smaller or larger to better suit your website’s design.

In this article, we will show you how to change the size of Gravatar images in WordPress.

How to change the Gravatar image size in WordPress

Why Change the Gravatar Image Size in WordPress?

Gravatar stands for Globally Recognized Avatar. It’s a web service that allows you to create a profile and associate avatar images with your email address.

Most WordPress themes show a Gravatar next to the user’s comment. Some themes also display a Gravatar in the author bio box.

Even if a user doesn’t have a Gravatar account, then your site will still show one of the default WordPress Gravatars.

The default WordPress Gravatar

Sometimes you may want to change the size of your theme’s Gravatars. For example, you may want to make them bigger so that they stand out. This can draw the visitor’s attention to your site’s comment section and help you get more comments on your WordPress posts.

Having said that, let’s take a look at how you can change the Gravatar image size on your WordPress site. Simply use the quick links below to jump to the method you want to use.

Method 1: Change Gravatar Size Using the WordPress Full-Site Editor (Block Themes Only)

If you are using a block-based theme such as ThemeIsle Hestia Pro or Twenty Twenty-Three, then you can change the Gravatar size using the full-site editor.

This method doesn’t work with all themes, so if you are not using a block-enabled theme, then we recommend using method 2 instead.

In the WordPress dashboard, go to Appearance » Editor.

Opening the WordPress full-site editor (FSE)

In the left-hand menu, you can choose whether to edit a template or template part.

To change the Gravatar size for WordPress comments, you will typically select ‘Template Parts’ from the left-hand menu.

Template parts, in a WordPress block-enabled theme

After that, just click on ‘Comments.’

You can now click to select the Comments template part.

The 'comments' template part in the WordPress full site editor

This opens a new menu with settings you can use to customize the comments template part.

You can now go ahead and click on any of the Gravatars in the live preview.

Changing the Gravatar image size using the full site editor

In the right-hand menu, you can select the ‘Block’ tab if it isn’t already selected.

You can now make the Gravatars bigger or smaller by dragging the ‘Image Size’ slider.

Changing the size of a Gravatar using the full site editor (FSE) in WordPress

As you move the slider, all the Gravatars will update automatically, so you can try different sizes to see what looks the best.

When you are happy with the changes you have made, click on the ‘Save’ button.

Saving resized Gravatars using the full-site editor (FSE)

Now if you visit any comment section on your WordPress website, you will see the changes live.

Method 2: Change Gravatar Size for WordPress Comments (Works With All Themes)

If you are not using a block-enabled WordPress theme, then you can change the Gravatar size for WordPress comments using code.

This method requires you to edit theme files, so it’s not the most beginner-friendly option. However, this method should work for most WordPress themes.

If you edit your WordPress theme files directly, then those changes will disappear the next time you update your theme. With that being said, we recommend creating a child theme, as this allows you to update your WordPress theme without losing customization.

After creating a child theme, you will need to connect to your WordPress site using an FTP client such as FileZilla, or you can use the file manager of your WordPress hosting cPanel.

If you are a SiteGround customer, then you can use the Site Tools dashboard instead.

If this is your first time using FTP, then you can see our complete guide on how to connect to your site using FTP.

Once you are connected, you need to go to /wp-content/themes/ and open the folder for your current WordPress theme.

An example of an FTP client

Once here, open the comments.php file and look for a wp_list_comments function. Inside this function, you will find theavatar_size, which sets the size of the Gravatar.

Here’s an example of how this might look:

<?php
wp_list_comments(
    array(
        'avatar_size' => 60,
        'style'       => 'ol',
        'short_ping'  => true,
    )
);
?>

You can simply change the avatar_size to the size you want to use. In the code snippet above, this would mean changing 60 to another number.

Gravatars are square, so WordPress will use the same value for the image’s width and height. This means that you only need to type in one number.

After making this change, make sure to save and upload the file back to your WordPress hosting account. When you are finished, you can visit your WordPress blog to see the change in action.

If the Gravatar image hasn’t changed, then it may be due to the cache. To learn more, please see our guide on how to fix WordPress not updating right away.

If the Gravatar still doesn’t change, then your theme’s CSS could be overriding the settings in the comments.php file.

You can see whether this is the case using your browser’s Inspect tool. The steps will vary depending on which browser you are using, but on Chrome, you can simply right-click or Ctrl-click the Gravatar and then select ‘Inspect’.

Inspecting a WordPress Gravatar using Google Chrome

This will show the page’s HTML and CSS code in a new panel.

In this code, you need to look for the height and width values.

Editing a WordPress Gravatar using Chrome's Inspect tool

If the size is different from what you specified in the comments.php file, then this means your theme’s style.css file is overriding your changes.

If this is the case, then simply switch back to your FTP client. You can now open the theme’s folder and then open the style.css file.

Opening a WordPress theme's style.css file using an FTP client

Here, search for a block of code that has the word avatar.

You will typically find this in a comment-author .avatar CSS class, such as this:

.comment-author .avatar {
    height: 42px;
    position: relative;
    top: 0.25em;
    width: 42px;
}

You can now go ahead and change the width and height to the values you want for your Gravatars.

After that, simply save your changes. Now if you visit your WordPress blog or website, you will see your updated Gravatar images.

At this point, you may be wondering why we recommend trying to change the Gravatar size in the comments.php file before using the easier CSS method.

Firstly, CSS can sometimes make the Gravatars look blurry, especially if you make the avatars much larger than the original image. Secondly, changing the image size in comments.php often helps your site to load faster.

For more on this topic, see our ultimate guide to boost WordPress speed and performance.

Method 3: How to Change Gravatar Size for Author Bios

If you run a multi-author WordPress site, then an author box can help readers learn more about the post’s author.

If you want to add this feature to your website, then check out our guide on how to add an author info box in WordPress posts.

Many author bios show the writer’s Gravatar along with their bio. To change the default Gravatar size in your author bio boxes, you need to find the theme file that adds the bio.

Simply connect to your site using an FTP client such as FileZilla or the file manager of your WordPress hosting. Once you are connected, go to /wp-content/themes/ and open the folder for your current WordPress theme.

After that, you need to open the template-parts folder.

Editing template parts in a WordPress theme using an FTP client

You now need to find the file that contains the get_avatar code. You will often find this code in a template part file called author-bio.php, single.php file, functions.php file, or similar.

Here’s an example of how this code might look:

<div class="author-bio <?php echo get_option( 'show_avatars' ) ? 'show-avatars' : ''; ?>">
        <?php echo get_avatar( get_the_author_meta( 'ID' ), '85' ); ?>

In the snippet above, you can simply change the number 85 to the size you want to use.

In other themes, the code may look like this:

get_avatar( get_the_author_meta( 'user_email' ), 85);

You can simply replace the number with the value you want to use to make the Gravatar bigger or smaller.

After changing the size, don’t forget to save your changes. You can then visit your website to see the new author bio box in action.

If the Gravatars haven’t changed, then you will need to search for the avatar class in the style.css file by following the same process described above. Once you find this class, you can type in the new Gravatar height and width values.

We hope this tutorial helped you learn how to change the Gravatar image size in WordPress. You may also want to learn how to display round Gravatar images in WordPress or check out our list of the best landing page plugins.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Change the Gravatar Image Size in WordPress first appeared on WPBeginner.

7 Best Free Author Bio Box Plugins for WordPress Compared (2021)

Are you looking for the best free author bio box plugins for WordPress?

Adding an author bio box can help you connect with your readers, boost authority, and even attract new writers to your site.

In this article, we’ll highlight the best free author bio box plugins for WordPress.

7 best free author bio box plugins for WordPress compared (2021)

Why Use an Author Bio Box Plugin for WordPress?

An author bio box plugin lets you customize and display an author bio section at the end of your WordPress posts.

Many WordPress themes have this feature built-in. However, a plugin lets you change how the author bio is displayed, add social media links, and much more.

Author bio example

Adding a custom author bio box section can benefit your WordPress blog in many ways.

  • Improve author credibility and authority with your readers
  • Build a connection between readers and authors
  • Help persuade guest authors to write for your website

With that said, let’s take a look at some of the most popular author bio box plugins for WordPress that you can use on your WordPress website.

1. Simple Author Box

Simple Author Box

Simple Author Box is the best author bio box plugin. What started as a simple way to add a clean author box to your WordPress posts has grown into a very feature rich plugin.

This plugin lets you customize nearly every aspect of your author bio box. You can add an author bio, social media links, and a custom Gravatar.

You also have complete control over the colors, typography, background, and more. There’s an option to show the author’s email address, so your readers can get in touch directly.

The real-time preview box lets you see the changes to your author bio box as you customize it.

If you want even more features, then there’s a pro version that lets you display an author box before or after content, add website links, get more social icon styles, include guest and co-authors, and more.

2. Author Bio Box

Author Bio Box

Author Bio Box is an incredibly simple author bio box plugin that will display an author bio beneath your blog posts.

The author profiles can include an image, social media links, and a short description.

The design of the author profile box is very minimalist, so it won’t distract from the blog content. However, you do have control over the text and title color, background color, and border size.

For more details, see our guide on how to add an author info box in WordPress posts.

3. WP Post Author

WP Post Author

WP Post Author is a simple and easy to use author bio plugin. It seamlessly integrates with your site’s design and will blend into your content.

This plugin will display the author’s avatar, name, company role, a short bio, and social media icons.

You have control over which elements of the author bio will display, along with the alignment of the text and author image.

There are 3 different widgets and a shortcode you can use to display your author bio in your sidebar and other areas of your website.

4. Meks Smart Author Widget

Meks Smart Author Widget

Meks Smart Author Widget lets you add an author bio to any widget area of your site.

You can display an author avatar, a short bio, links to social media, and a link to the author profile page that lists all their articles.

This can be a great way to add a good looking author bio widget to your WordPress sidebar. The plugin set up is fairly straightforward, and it uses an auto-detect feature to find the correct post author and display their bio instantly.

Since the plugin will fetch author information from their WordPress profile, you need to make sure that all authors fill out their author information by editing their profiles.

5. Starbox

Starbox

Starbox is a feature rich and easy to use author bio box plugin. The goal is to make it as easy as possible to create a custom author bio box.

You’ll find a few different themes you can use to customize your author bios.

With this plugin, you can create unique author bio boxes for every author on your website. You have control over social media profiles, name, job or role, image, and more.

There’s even the option to add a tabbed author bio that includes the latest posts from that author.

If you’re running an online store, then this plugin can integrate with WooCommerce to display unique author bios as well.

6. Molongui Authorship

Molongui Authorship

Molongui Authorship is a great WordPress author bio box plugin that lets you display an author box, co-authors, and guest contributors.

This plugin makes it easy to create author bios and guest author bios without creating a WordPress account.

If you want to add additional authors and co-authors to WordPress, then see our guide on how to add new users and authors to your WordPress blog.

There are many customization options, including multiple layouts, colors, typography, author avatars, social media icons, and more. You can also control whether the author bio displays above or below the content.

Plus, you can fully customize the author bio using the WordPress Customizer, which makes things easy.

7. All in One SEO

AIOSEO

All in One SEO is the best WordPress SEO plugin in the market used by over 2 million websites.

It’s the most comprehensive SEO toolkit and will help you improve your search engine rankings without having to learn the ins and outs of SEO.

The setup wizard will help you pick the perfect SEO settings for your WordPress website, and you can start optimizing with the built-in SEO checklist.

You’ll also find a feature that will help you improve your author profile pages. By default, your author profile pages display a list of posts from respective author’s on your site.

These can help your readers find more content from their favorite author, and it can also help you get more search engine traffic.

AIOSEO add Twitter and Facebook

AIOSEO expands the default WordPress author profile and lets you add social media links in the meta data.

You can connect your Facebook and Twitter profiles to make your author profiles and author bio more engaging.

Author profile links

For more details, see our guide on how to display author’s Twitter and Facebook on the profile page.

Note: there is also a premium version of the AIOSEO available that offers even more advanced SEO features to help your website get more traffic from the search engines.

We hope this article helped you find the best free author bio box plugin for WordPress. You may also want to see our guide on how to change the author of a post in WordPress and our expert picks of the must have WordPress plugins for business websites.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post 7 Best Free Author Bio Box Plugins for WordPress Compared (2021) appeared first on WPBeginner.

9 Top Free WordPress Author Bio Box Plugins

Drawing attention to the author or authors on your site may be a key piece of your overall strategy. Perhaps you’re trying to establish a more personal tone. Perhaps you’re trying to build a reputation. Perhaps you’re trying to attract quality contributors. These are but a few potential reasons why you might want to make sure your readers connect the content with the person writing it.

Out of the box, WordPress provides users with a biographical info section in the User Profile screen where post authors and site users or members can add information about themselves.

WordPress User Profile - Biographical info
The default WordPress User Profile author bio box is not the be-all and the end-all of bio boxes.

Depending on your theme and how its settings are configured, information about the author can display in Post author archives…

Post Author Archive Page
Not happy with your post author archive page? You can have it as you like it…with plugins! (Theme: WordPress Twenty Twenty)

And at the end of every post…

WordPress Twenty Twenty Theme - Post Author Bio
A post author bio at the end of every post? I guess you can have too much of a good thing!

With some WordPress themes, however, you may find that all that glitters is not gold.

For example, you might want an author box that lifts your writers above the ground with cheerful thoughts and links to their social profiles, and discover that, while you love your theme with a love that shall not die, you can’t customize its bio boxes to your heart’s content.

So, do your current author boxes perform as well as they could? Or are they a tragedy of Shakespearean proportions? If you’re looking to liven up your author profiles, then one of the plugins below may just do the trick.

So, without further ado…

  • 1. Simple Author Box

    Simple Author Box may have started out as a way to create simple and beautiful minimalistic design for author bio boxes without having to break into the code, but since being taken over by WebFactory Ltd, the plugin now offers a huge range of customization options for your author bio box.

    Simple Author Box Settings screen.
    Simple Author Box settings screen.

    This plugin gives you the ability to easily customize everything about your bio box. The range of settings and options is quite impressive.

    For starters, you can edit your author bio directly from the plugin’s settings screen, add/edit social media icons, and even set up a custom gravatar.

    Tabbed sections offer everything from toggle settings that let you do things like display a bio box anywhere on your site using a shortcode or code snippet, show author email address, or hide various elements and features, to customizing its appearance, changing different colors of elements like author name, borders, backgrounds, etc., and then make it stand out from the rest of your site’s content using unique typography styles.

    You can also preview changes to your bio box in real-time while you play with the settings.

    Simple Author Box Live Preview Feature
    Extemporize your inner bard with Simple Author Box’s settings and live preview feature.

    Beware when tapping into the suite power of this plugin’s sweet customizable options. Deceive not thy sweet self into thinking that having complete control of your bio box designs will make thee a cutting-edge bio box designer.

    Simple Author Box plugin bio box example.
    “Could beauty have better commerce than with honesty?” Create eye-catching bio boxes with Simple Author Box plugin.

    The free version of Simple Author Box incorporates mobile responsiveness, a Gutenberg block, and is fully customizable to match your existing theme design.

    Upgrade to Pro for advanced features like changing author box position in the content, linking the author’s name to their website or page, adding author avatar hover effects and changing image position, social icons settings, color palette and font and font sizes for additional elements, as well as enabling guest authors and co-authors, and adding widgets to your site.

    Interested in 1. Simple Author Box?

  • 2. Branda

    If you’re looking to add feature-rich author boxes that blend in perfectly with your website or blog, try our WordPress white labeling plugin Branda.

    Branda is our full white label solution for WordPress, so it lets you customize your site’s front-end and back-end, including author boxes.

    Branda author box settings screen.
    Branda’s author box settings screen is found in the Front-End section of the plugin’s customization settings menu.

    Branda takes care of every aspect of your author box design from configuring design options, visibility, and elements of the author box, to customizing author and social media profiles, colors, avatars, etc. You can also use custom CSS.

    Branda Author Box example.
    “This brand[a] she quenched in a cool well…” to thine own site be true.
    Branda is the only premium and 100% free white label plugin for WordPress. So, if you’re looking to customize a whole lot more than just author boxes on your site, with Branda, all the world’s your stage.

  • 3. WP Post Author

    WP Post Author by AF Themes is another great plugin you can use to add an author bio box with custom settings to your WordPress site.

    The plugin offers a widget and shortcode designed to be used in WordPress single post author and author pages, and custom styling can be added through a CSS box.

    WP Post Author Settings screen.
    WP Post Author bio box plugin settings screen.

    Although this plugin may have fewer customization options than the previous plugin, it still offers an impressive range of useful options and settings for tweaking your site’s author bio boxes styling.

    WP Post Author Bio Box Example.
    WP Post Author bio box example. Simple, plain bio box, I do love thee so!

    Interested in 3. WP Post Author?

  • 4. Author Bio Box

    If all you need is a simple plugin that will make your site’s author bio boxes stand out from the content, the Author Bio Box plugin offers a one-page settings screen with colorful design and border styling options.

    Author Bio Box Settings screen.
    Author Bio Box plugin settings screen.

    The plugin also gives you the choice of displaying author bio boxes only in posts, the home page and posts, or none.

    Author Bio Box example
    There are no tricks in this plain and simple Author Bio Box.

    Interested in 4. Author Bio Box?

  • 5. Starbox

    Starbox offers a fairly functional free version, with various toggle and dropdown options, plus customizable fields for adding author information.

    Starbox Settings screen.
    Starbox author box plugin settings screen.

    Fields are limited in the free version, but you have complete control and many more options to choose from when you buy the Starbox PRO premium version of the plugin.

    The free Starbox plugin aims to make it as easy as possible to add attractive author boxes to your website. Activating the plugin adds additional fields to the default WordPress user profile page allowing your users to enter links to their Facebook and Twitter social media profiles, submit their job title, company name, company URL, as well as the default biographical info.

    The plugin’s settings let you choose whether to activate the author boxes on posts and/or pages, display the box before, after, or before and after the post content, and more. The free version provides six themes for styling the author boxes on your site. Depending on your chosen theme, the author box may include a latest posts tab. You can also quickly change the size of the text used to display the name and author bio, independently from each other. A handy preview panel lets you see how your choices will display in real-time.

    Starbox Author Bio Box Example.
    “It is not in the stars to hold our destiny” but Starbox can definitely help authors become masters of their own fate.

    While most author box plugins rely on Gravatar to display your profile picture, Starbox also gives you the option of uploading an image directly to your user profile page. Through the individual user profile pages, users can choose from one of the available themes, and set the author box position themselves.

    Author boxes can also be manually inserted directly into posts, pages, and the sidebar areas of your website by using the included shortcodes. This makes it easy to add multiple author boxes to a single post or page.

    This author box plugin is packed with useful features, making it a popular and highly recommended choice. The premium version of Starbox gives you the ability to add links to more social media websites and also offers a number of themes to choose from, incorporating HTML5. However, the free version is more than capable of displaying professional author bio boxes on your WordPress website.

  • 6. About Author

    With the About Author author bio box plugin, you must first create a shortcode that includes your choice of template style and the information you want to include in your template, and then you configure your author settings and select the template you have created.

    About Author Settings screen
    About Author plugin settings screen.

    This can feel a little confusing at first, but it gives you the option of configuring and using multiple post author templates throughout your site, including posts, pages, sidebars, etc.

    About Author author box plugin example.
    “Let me be that I am and seek not to alter me.” But you can alter this bio box using shortcodes and templates.

    With the free version, you can create functional author bio boxes with customizable font, color, and social media options but you are limited to two template styles, two profile image layouts, and a few other restrictions. The Pro version gives you 10 design author templates, more profile image layouts, more social media settings, profile header backgrounds, multiple author options for images, widgets, and shortcodes, responsive design, and more.

    Interested in 6. About Author?

  • 7. Molongui Authorship

    The plugin developers claim that Molongui Authorship “provides you all the missing features you might need to properly manage and credit all the contributors to your site.”

    This may not be an exaggerated claim. This comprehensive and feature-rich author box plugin is suitable for all types of WordPress sites, especially sites featuring multi-authors, co-authors, and guest authors.

    The plugin’s settings screen has a number of tabs for configuring and customizing a wide range of options from layouts, templates, typography, avatars, and social media icons, to SEO metadata, byline modifiers, conditional logic, shortcodes, and more. It also integrates with the WordPress Theme Customizer.

    Molongui Authorship plugin settings screen.
    Molongui Authorship plugin settings screen.

    Choose the free version of the plugin if you just want to display an enhanced author box on your site. If your strategy depends on attracting content authors or promoting multi-authoring, guest authoring, or co-authoring on your site, then the premium version unlocks a range of additional elements and advanced customization features (like shortcodes and the ability to make links ‘nofollow’) that will let you dive deep under the hood to tinker, tweak, and finetune your author bio box settings to your heart’s content.

    Molongui Authorship plugin bio box example.
    “O Romeo, wherefore art thou?” Maybe try searching in the house of Molongui.

    The premium version also includes export/import settings tools, REST API, and access to premium support (in case you run into a tragedy).

    Interested in 7. Molongui Authorship?

  • 8. Co-Authors Plus

    Co-Authors Plus is another plugin you can install if you collaborate with multiple authors on the same post and need an easy way to give all authors credit.

    Co-Authors Plus isn’t an ‘author bio box’ plugin in the sense that it helps you define the design and structure of author bio elements. Instead, this plugin makes it simple to credit more than one person for the creation of an article. As such, this plugin is great if you plan to publish articles with two or more authors and want to give both equal credit for their contributions.

    Co-authors plus lets you add multiple authors to posts.
    Need to add multiple authors to your posts? Co-authors plus lets a wavering multitude play upon it.

    The plugin upgrades the core authors meta box, which is displayed on the edit post and page screens. This lets you search for existing users on your blog and then add them as a co-author for the post or page you are working on. You can drag and drop the authors that have been added to a post in order to change the order their bio boxes are displayed in when your post is published.

    When you assign a co-author to a post or page, they can then edit that page according to their WordPress user role settings.

    Another interesting feature of this plugin is the ability to add bylines without having to create a user account for each author. This makes it easy to create guest author accounts, allows you to credit guest posters by giving them a byline, and eliminates the need to create an actual user account for one-time authors who submit content for your WordPress site or blog.

    Note: To display multiple bio boxes on a single post, you will need to manually add some code to your theme’s templates files, so bear this in mind before downloading and installing this plugin. If you don’t mind messing with code, there is helpful documentation on the plugin’s site to help you achieve this without drama.

    Also, if you are using the Genesis theme framework on your website, then you will want to install the Genesis Co-Authors Plus plugin. This free tool works alongside this plugin, enabling support for multiple author boxes on a single post.

    Interested in 8. Co-Authors Plus?

  • 9. Meks Smart Author Widget

    Meks Smart Author Widget lets you display your author/user profile info inside a WordPress widget.

    Meks Smart Author Widget settings.
    Meks Smart Author Widget settings.

    The widget provides a range of flexible display options, including custom avatar size, linking avatar image and user display name to author archive page (you can also override the author link URL and link to any page or URL you like), and a smart feature that can auto-detect and display the current post author on single post and author templates.

    Meks Author Widget displaying on sidebar.
    “Sit by my side, and let the world slip…” Display thy author info on the sidebar[d].

    Note: This plugin provides only an author box widget. To display the author info on a widgetized area of your site (e.g. your sidebar) and within your posts/pages, we recommend installing both this plugin and one of the other plugins listed in this post.

    Interested in 9. Meks Smart Author Widget?

Hiding the Original Author Box

Many themes already include an author box, and if this is your case, then you will probably find that the plugins above add a second author box to your pages.

This was the case when I tried creating this post using the WordPress Twenty Twenty theme.

Twenty-twenty theme with duplicated author boxes.
Yiikes… the Twenty Twenty theme creates double, double toil and trouble!

So, I used a theme called Newsphere instead from AF Themes to create this tutorial.

Newsphere Theme for WordPress by AF Themes
One author box only … now, Newsphere is the winner of dis content!

Of course, you don’t want two author boxes displaying throughout your site, so in order to remove the original author box, you will need to dig into your code a little.

As always, if you’re making changes to your theme, it’s better to use a child theme.

In order to remove the default author box for your theme, you will need to find out where the code is located. Most often author boxes will show up on your single post pages, and so you will want to check your single.php file and search around for the code that pulls in your author box.

In many themes, however, the single.php pulls in other files, and the code you need will be in one of those other files.

For example, when searching for themes that I could use for testing, I looked at the WordPress Twenty Twenty theme. I didn’t find information about my author box, but I found that the singular.php file (normally single.php in most themes) pulls in a file called content, which looked like what I wanted.

Twenty Twenty: Singular Template (singular.php)
“O single.php-soled jest, solely singular.php for the singleness.”

I then went to the content.php file and tracked down the code that was displaying my author box.

Depending on the theme, this could be just a little bit or a lot of code. With the Twenty Twenty theme, it was just a little bit of code.

Twenty Twenty: content.php template file
“Out, damned spot! Out, I say!”

I could simply delete that code. (Again, remember that using a child theme is best. You could just copy the original content.php file into your child theme and then delete the part you need to delete.)

Here’s the code I would want to delete in the Twenty Twelve theme.

Author bio code in content.php file
“You can take him and cut him out”…
Instead of deleting the code, however, another way to do it is to simply comment out that portion of the code. You can do this as follows:

<?php
/*

…code…

*/
?>

Here’s an example:

Section of commented out code from content.php template.
This better work…I’m all commented out!

This worked. Now, the Twenty Twenty theme displays just one author bio box … the one we have added via the plugin.

Twenty Twenty theme with a single author bio box displayed.
Twenty Twenty theme now displays only one author bio box. All’s well that ends well.

And that’s it. If you’d like to spice up your author profiles, methinks one of the above plugins should work out for you – making your bios stand out a little more and hooking these up to the authors’ social profiles at the same time. Try them. You may love all, trust a few, and do wrong to none.