Search
Close this search box.

How To Add Author Box In Generate Press 2024 (Step-By-Step)

Written by:

Edited by:

Researched by:

You have landed in this page to learn the exact method on how to add author box in generate press.

Generate press is one of the lightweight theme under less than 30kb

Several site owners want to give credit where credit is due. With content, part of this is delivering a way to identify the creator.

Using an author bio box in WordPress shows professionalism while promoting the one writing the piece.

When you add your writers’ professional information to their posts, it can help lend credibility to the content.

If you often invite guest bloggers to provide content, placing their author bios on the page is a brilliant way to provide transparency to your readers.  

In this article we will show the exact method step-by-step on how to add author box in Generate press.

Here’s an example of author box in generate press.

Let me tell you…

Now it’s on your hand which you want with social media or without.

What Is a WordPress Author Box?

What is word press author box?

I have showed you the example above how an author box exactly looks like.

 When you read articles on your favorite blogs, you might notice that at the bottom there’s often section that’s typically styled to stand out from the rest of the post’s content.

Most author boxes are comparable, providing basic information about the writer and typically an image or headshot.

There are often links leading out to the author’s email address and/or social media accounts.

Why You Need an Author Info Box in WordPress?

why we need author box in word press

There are lots and so many content options available online, setting your blog apart from the masses is important.

This is where using a WordPress author box can be very helpful. 

Seeing an actual person behind the content helps build credibility and strengthens your site’s authority among users and helps your site value and trustable.

This helps your users determine more about individual authors on your website.

It also provides authors an additional incentive to contribute more often and interact with readers.

As we saw above, WordPress author boxes usually enable you to include each author’s photo as well. 

This also makes your user to buy your products, adding an author box in generate press or in any themes will help you increase sales.

People buy no products from stranger sites.

This helps give the post (and your website) a ‘face’. If visitors can connect an actual person to what they’re reading, it will humanize your content and encourage them to seek more.

How to Add Author Box In Generate Press?

how to add author box in generate press

Lets move to the principal topic “How to Add Author Box In Generate Press?”

In this article, we will show you the exact way to conveniently show an author info box in generate press. We will also show you how to customize author bio and make it more useful.

Step1: Add User In WordPress Theme

Every WordPress comes with an author information box below each article, then you can use that to display your author bio.

To make use of it, you will need to visit Users » All Users page. From here you need to edit the user you want to change.

how to add author in wordpress

On the profile edit screen, head over to the Add new user to add new user or you can also edit the existing users.

On the profile edit screen..

Scroll down to the ‘Biographical info’ section to add the author’s bio and add links to the author’s social media profiles.

how to add author box in generate press 3

We can add the image using gravator.

If the author has not set up a gravatar photo, then you can ask them to follow our guide for setting up a gravatar photo in WordPress.

Once done, don’t forget to click on the ‘Update user’ button to save your changes.

Step2: Creating Hook In Generate Press

All you have to do is follow my steps.

Step1: Head over to WordPress Dashboard > Appearance > Elements > Add New.

WordPress Dashboard > Appearance > Elements > Add New.

how to add author box in generate press

Step 2: Select “AddNew”.

how to add author box in generate press

Step 3: Select “Choose” from the drop-down list.

Step 4: Select “Hook” from the dropdown list

how to add author box in gp 1

Now a new window will pop out, and there you have to name the hook and add the portion of codes in the Editor box.

All you have to copy the codes from downside.

how to add author box in generate press
div class="author-box">
<div class="author-box-avatar">
<?php echo get_avatar( get_the_author_meta('user_email'), '70', '' ); ?>
</div>
<div class="author-box-description">
<h5><span class="author-box-by">by</span> <?php the_author_link(); ?></h5>
<?php the_author_meta('description'); ?>
</div>
<div class="author-box-social">
<a class="facebook-author" title="Follow on Facebook" href="Enter Your Facebook URL" target="_blank">Follow on Facebook</a>
<a class="twitter-author" title="Follow on Twitter" href="Enter Your Twitter URL" target="_blank">Follow on Twitter</a>
</div>
</div>

Now you need to change some Codes hers how you can do it.

Head over to this code:

<a class="facebook-author" title="Follow on Facebook" href="Enter Your Facebook URL" target="_blank">Follow on Facebook</a>

Now, all you have to remove is Enter your Facebook URL and your own fb URL or groups.

Heres how it will look like :

<a class="facebook-author" title="Follow on Facebook" href="https://www.facebook.com/groups/287139875587217/" target="_blank">Follow on Facebook</a>

This works same with other social media. Result Will look like this;

how to add author box in generate press

Now Bonus tips for Linko viewers:

If you want to add more social media all you need is followed these steps;

<div class="author-box-social">
<a class="facebook-author" title="Follow on Facebook" href="Enter Your Facebook URL" target="_blank">Follow on Facebook</a>
<a class="Instagram-author" title="Follow on Instagram " href="Enter Your Instagram URL" target="_blank">Follow on Instagram</a>

Now you add many social media like LinkedIn, Pinterest ,snapchat etc.

All you have to do is instead of this code

<a class="You Social Media-author" title="Your Social Media Platfrom Name  " href="Enter Your Social Media URL" target="_blank">Follow on The Choosen Meida Platfrom</a>

Hers the quick overview of it.

Your Social Media Author = <a class=”Linked In-author”

Your Social Media Platform Name = title=”linkedIn”

Your Social Media URL-: Linkedin.com-5678686siddhit.

Now in follow section add your meda- Follow On Linked In.

I hope you have understood this concept and sucessfully added author box if not comment down below i will help you make it.

Step3: Setting Up Display Rule In Generate Press

Display Rule is basically where you want to show your author box either in comments section of up above the post.

You can add wherever you want is your choice.

But the most of the people add author-box in before comment section.

Now, we will set the display rules to define the location of the author box.

To do that, go to the “Settings” tab, choose “before-comments-container” and enable the option “Execute PHP.” You may set any number for the “Priority.”

how to add author box in generate press

Now ..

Head over to the opposite of the “Display Rules” settings, you can pick the author box display locations.

Select the posts where you want to add this author Box, and you may add the exclusion rules.

how to add box of author in generate press

Congrulations;

Now you have made the Author box using Hook element in the Generate press theme.

This is how to add author box in Generate press theme.

That’s not the end now, all you have to design the section which takes only 15 sec.

Step4: Designing Author Box In Generate Press Theme

Its not time consuming time; just takes 15 sec to do with.

Head over to;

Go to Appearance > Customize > Additional CSS > Add Codes > Publish

how to add author box in generate press 6
.author-box{  
    background: #ffffff;
    padding: 40px;
    text-align:center;
}
.author-box-avatar img{
    border-radius:100%;
    border:5px solid #f1f1f1;
}
 
.author-box-description{
    background: #f9f9f9;
    padding: 20px;
    margin: 20px;
}
.author-box-description h5{
    text-transform: capitalize;
}
.facebook-author, .twitter-author{
    padding: 5px 10px;
    margin: 0 10px;
    color:#ffffff!important;
}
.facebook-author{
    background-color:#4267b2;
}
.twitter-author{
    background-color:#00acee;
}

The more you add social media in author box you need to add this more codes .

.facebook-author, .twitter-author,.linkedin{
    padding: 5px 10px;
    margin: 0 10px;
    color:#ffffff!important;
}
.facebook-author{
    background-color:#4267b2;
}
.twitter-author{
    background-color:#00acee;
}
.Linkedin-author{
    background-color:#00acee;
}

The more you add social media you will need to add more sentences of codes.

Wrapping Up

If you had followed the all above steps , then you can easily create author box in generate press .

If you want to BULD a an intimate connection with the audience, then adding the author box to the content is the right result.

Yes, it lets you improve user engagement on your WordPress site. It showcases your expertise level and i have mentioned above.

I hope you understood the advantages of adding author bio for your content and unique ways to integrate author box to Generate press theme.

Let me know whats your thought on this;

Which content would visitors take a look at first? With author name or a post written by anonymous? 

Comment Down Below.

Check Out Posts Most Important To you

Today's finest Software bargains compiled for you!

Elementor Plugin

$59/yr

33% off

Jasper AI

$39/mth

10k Free Credits

Bluehost

$2.95/mth

60% off

Dreamhost

$2.59/mth

68% off

Surfer SEO

$19/mth

$120% SAVED

No Coupon Code REQUIRED

At PCL, our experts review over 100 products each week to ensure that we offer the best prices available.

POWERED BY PCL TEAM

About the author:

Researched and edited by:

Amelia Willson

Amelia Willson

I am Amelia Wilson, a dedicated and skilled editor at Pocketlinko.com. My passion for precision and keen eye for detail make me the driving force behind the editorial excellence that defines Pocketlinko's content. My commitment to delivering insightful and polished articles reflects my unwavering dedication to providing readers with valuable and engaging information.

Veronika Russo

Veronika Russo

I'm Veronica Russo, a wordsmith and research enthusiast immersed in the vibrant world of Pocketlinko.com (PCL). My journey in the realm of content creation has been one of evolution and exploration. Formerly engaged in the realm of lifestyle editorials, I've embraced the challenge of transitioning into the dynamic fields of software articles production and content strategy at PCL.

Pocketlinko Promoise

Pocketlinko aims to give you the best legitimate information that you can’t discover elsewhere with our inside and out articles and exploration. That is why we lead our own autonomous research and acquire direct information and investigation understanding. Examinations and designs in this article depend on genuine sources cross-approved by our PCL – house specialists. 

We take incredible consideration to guarantee the data we distribute is solid and exact so. In any case, PCL assumes no liability for any mistake in data provided to us by clients, research members, or different substances.

 If it’s not too much trouble, note the knowledge contained inside this article is for general data purposes as it were. We’re happy to address any inquiries you might have about this article and its supporting exploration. For additional data, kindly contact PCL Writer Expert straightforwardly through email at [email protected]

Disclosure: Our independent research projects and impartial reviews are funded in part by affiliate commissions, at no extra cost to our readers

Recommended Reading

Scroll to Top

Amelia Wilson

WordPress, Softwares, Reviews and contributor

Meet Amelia Wilson, a dedicated and skilled editor at Pocketlinko.com. With a passion for precision and a keen eye for detail, Amelia is the driving force behind the editorial excellence that defines Pocketlinko’s content. 

Her expertise in the realm of editing not only shapes the narrative but also ensures that every piece published on Pocketlinko.com meets the highest standards of quality. 

Amelia Wilson

WordPress, Softwares, Reviews and contributor

Meet Veronica Russo, a versatile individual who wears multiple hats with grace. As a seasoned writer and research expert at Pocketlinko.com (PCL), Veronica has seamlessly transitioned from her roots in lifestyle editorials to a prominent role in global news production and content strategy.

Veronica’s creative spirit extends beyond the written word to her love for coffee, a ritual she savors to fuel her imagination. When not immersed in the world of words, she indulges in well-deserved Netflix binges, finding inspiration in the diverse stories that unfold on the screen.

Advertiser Disclosure

You have Software, WordPress question. PocketLinko has the answer

PocketLinko is a participant in various affiliate marketing programs designed to provide a means for us to earn fees by linking to affiliated sites. This means that we may earn a commission or other compensation when you make a purchase through the links provided on our website. The compensation received may influence the content, topics, or posts made on PocketLinko.

We want to make it clear that the compensation received does not, in any way, affect the integrity of our reviews, recommendations, or advice. We are committed to providing unbiased and honest assessments of software, WordPress themes, and digital products. Our editorial team adheres to strict guidelines to ensure that our reviews are based on genuine opinions and experiences. 

While we strive to keep our listings up-to-date, we recommend verifying the latest information with the individual providers. We aim to present accurate and timely content, but the dynamic nature of the software and digital products industry may lead to changes that are beyond our immediate control.

Your trust is important to us, and we value transparency. If you have any questions or concerns about our affiliate relationships or content, please feel free to contact us. We appreciate your support in using the links on our site to explore and purchase products, as it helps us continue to provide valuable information and reviews.