WPBeginner

Beginner's Guide for WordPress

  • Blog
    • Beginners Guide
    • News
    • Opinion
    • Showcase
    • Themes
    • Tutorials
    • WordPress Plugins
  • Start Here
    • How to Start a Blog
    • Create a Website
    • Start an Online Store
    • Best Website Builder
    • Email Marketing
    • WordPress Hosting
  • Deals
    • Bluehost Coupon
    • SiteGround Coupon
    • WP Engine Coupon
    • HostGator Coupon
    • Domain.com Coupon
    • Constant Contact
    • View All Deals »
  • Glossary
  • Videos
  • Products
X
☰
Beginner's Guide for WordPress / Start your WordPress Blog in minutes
Choosing the Best
WordPress Hosting
How to Easily
Install WordPress
Recommended
WordPress Plugins
View all Guides

WPBeginner» Blog» Tutorials» How to Change the Default Gravatar on WordPress

How to Change the Default Gravatar on WordPress

Last updated on January 16th, 2017 by Editorial Staff
160 Shares
Share
Tweet
Share
Pin
Special WordPress Hosting offer for WPBeginner Readers
How to Change the Default Gravatar on WordPress

Do you want to change the default Gravatar on your WordPress site? By adding your own default gravatar image, you can make your comments section branded. In this article, we will show you how to change the default gravatar in WordPress and replace it with your own custom default gravatar image.

How to change default gravatar image in WordPress

What is Default Gravatar and Why Change it?

Gravatar is a web service created and run by WordPress co-founder Matt Mullenweg’s company called Automattic. It allows anyone to create a profile and associate avatar images to their email addresses.

This avatar image is then displayed on all WordPress blogs where users leave comments or write blog posts. For more details see our guide on What is gravatar and why you should start using it right away.

All WordPress sites come with built-in support for gravatars and automatically show users’ avatars when they write posts or leave comments.

However, if a user doesn’t have a gravatar image, then WordPress automatically shows the default gravatar image. The default option is to show an image called mystery man. It looks like this:

Default mystery person gravatar in WordPress

If you don’t want to use the mystery man as default image, then you can change it to your own branded image.

Having said that, let’s see how you can change the default gravatar image on your WordPress site, so you can use a custom default gravatar image.

Changing Default Gravatar Image in WordPress

First, you need to visit Settings » Discussion page and scroll down to Avatars section. This is where you can configure and change gravatar settings on your WordPress site.

Gravatar settings in WordPress

You will notice that there are a few choices available under the default avatar option. These avatars are used when a user does not have a gravatar associated with their email address.

Out of the box WordPress uses the mystery person icon as the default gravatar. You can change that to blank or gravatar logo.

There are few other options available as well. These are automatically generated images in different designs. These images use comment author’s name or email address to mathematically generate a unique gravatar image.

Don’t forget to click on the save changes button after changing your default gravatar.

Using Custom Default Gravatar Image in WordPress

WordPress also allows you to use your own default gravatar images. Here is how you can easily add your own custom default gravatar image in WordPress.

First you need to create an image that you want to use as the default gravatar. This image should be a square, like 250×250 pixels.

Next, you need to upload this image to your WordPress site. Head over to Media » Add New and upload your custom default gravatar image.

Upload and edit custom default gravatar image

After the image is uploaded, you need to click on the Edit link next to the image.

WordPress will now open your image for editing. You need to just copy the image file URL and paste it in a plain text editor like Notepad.

Copy file URL

Now you need to add some code to your WordPress site. If you haven’t done this before, then please take a look at our guide on how to copy paste code in WordPress.

Add the following code to your theme’s functions.php file or a site-specific plugin.

add_filter( 'avatar_defaults', 'wpb_new_gravatar' );
function wpb_new_gravatar ($avatar_defaults) {
$myavatar = 'http://example.com/wp-content/uploads/2017/01/wpb-default-gravatar.png';
$avatar_defaults[$myavatar] = "Default Gravatar";
return $avatar_defaults;
}

Don’t forget to replace $myavatar value to the URL of the custom gravatar image you uploaded earlier.

You can now visit Settings » Discussion page and you will notice your custom default avatar added to default avatar choices.

Custom default gravatar image

Select your custom default avatar image, and then click on the save changes button.

WordPress will now use your image for users who don’t have their gravatar associated with their email addresses.

Custom default avatar image in WordPress

We hope this article helped you learn how to change the default gravatar on WordPress. You may also want to see our guide on how to set custom avatars for users in WordPress.

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.

160 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • Revealed: Why Building an Email List is so Important Today (6 Reasons)

    Revealed: Why Building an Email List is so Important Today (6 Reasons)

  • Checklist

    Checklist: 15 Things You MUST DO Before Changing WordPress Themes

  • Google Analytics in WordPress

    How to Install Google Analytics in WordPress for Beginners

  • How to Start Your Own Podcast (Step by Step)

    How to Start Your Own Podcast (Step by Step)

About the Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi. Trusted by over 1.3 million readers worldwide.

The Ultimate WordPress Toolkit

97 Comments

Leave a Reply
  1. anna says:
    Sep 27, 2017 at 1:48 am

    Thanks for the nice explanation, Now I’m clear about setting up my gravatar in WordPress site.

    Reply
  2. rashmi says:
    Aug 28, 2017 at 8:11 am

    this is very useful

    Reply
  3. Pat says:
    May 25, 2017 at 4:44 pm

    Thank you, thank you, thank you! I’ve looked everywhere on how to change the default avatar and you were the only ones who simple explained it and displayed how! Sometimes finding the answer in the haystack of information can be just mind blowing. You rock!

    Reply
  4. manoj rai says:
    May 19, 2017 at 8:42 am

    how set when user comment your post show him/her original profile. please help me. thanks

    Reply
  5. Joy says:
    Apr 19, 2017 at 5:40 pm

    Hello, I’ve tried this in my child’s theme function and it just will not work. The image in the discussion settings and on the front-end appear broken. When I right click to view the path it displays:

    It affixes the i1.wp.com before the link. Even when I tried to connect directly to the child theme stylesheet directory and pickup from the folder, ‘images/chicken_avatar.png’, it still affixed the i1.wp.com

    Any ideas how to fix this? Thank you.

    Reply
    • WPBeginner Support says:
      Apr 24, 2017 at 5:14 pm

      Hey Joy,

      We tested it again with a child theme and it worked as expected. We are not sure what may be causing the issue. You can follow the instructions again. Make sure you add the full image URL in the code.

      Reply
      • Joy says:
        May 8, 2017 at 5:27 pm

        Hmm, not sure what I was doing wrong. I just gave it another go and it works. Thank you!

        Reply
    • Andrew says:
      Sep 29, 2017 at 1:32 pm

      Joy: Mine Via Another WordPress Script, is Going to (i0.wp.com/MySite…). Very Strange. :–)

      Reply
      • Andrew says:
        Sep 29, 2017 at 2:02 pm

        It Still Shows i0.wp.com/MySite Whwn Going to the Image Location, but I Changed the URL Code to (‘/custom-gravatar/mh-profile-photo-default.png’), Instead of ‘example.com/wp-content/uploads/2017/09/mh-profile-photo-default.png’). In Settings > Discussion It Shows My Admin Photo as the Default User Gravatar, but On User Profiles, It Views Properly! :–)

        Reply
  6. Mayaprakash Pant says:
    Apr 13, 2017 at 4:29 am

    Hello.

    The code worked perfectly fine for me. But this arises another problem:

    Same gravatar appears when everyone else including visitor comments on my blog.

    How to solve this?

    Reply
  7. Gabrielle says:
    Apr 7, 2017 at 4:45 am

    Hi, i added and sucesfully saved input(type = url) for each user profile, on ly localhost installation.
    I’m trying to change original code from WP Codex wesbsite:

    From:
    add_filter( ‘avatar_defaults’, ‘new_default_avatar’ );

    function new_default_avatar ( $avatar_defaults ) {
    //Set the URL where the image file for your avatar is located
    $new_avatar_url = get_bloginfo( ‘template_directory’ ) . ‘/images/new_default_avatar.png’;
    //Set the text that will appear to the right of your avatar in Settings>>Discussion
    $avatar_defaults[$new_avatar_url] = ‘Your New Default Avatar’;
    return $avatar_defaults;
    }

    To something that will replace default avatar url foreach user with value from custom input field(if its not empty), any help?
    I know there are plugins that allows subsciribers to upload gravatar images, but i don’t want to allow them doing that, i want to give them a chance to put url to their own images

    Reply
  8. Manish B says:
    Apr 3, 2017 at 8:18 am

    I am not able to show avatars next to comments. I am using Hitchcock WordPress Theme.

    Reply
  9. Claire Benneth says:
    Feb 3, 2017 at 4:12 am

    THANK YOU!

    Actually I’ve been looking for this solution for my blog for 3 months!
    Thanks again!

    Claire xo

    Reply
  10. Jen Hardy says:
    Dec 17, 2016 at 3:26 pm

    I have the Gravatar set up in WordPress, but when the e-mail goes out to my followers for my blog, the mystery man is there. Looks really bad at the top of my e-mail. Any suggestions?

    Thanks!

    Reply
  11. Syed Hamza says:
    Nov 28, 2016 at 6:26 am

    Here are two folders of images in Cpanel.
    1. /public_html/wp-includes/images
    2. /public_html/wp-content/themes/divi/images

    In which folder where I upload the image.

    Reply
  12. Manoj says:
    Aug 22, 2016 at 9:18 am

    I can’t see my avatar even after setting in comment box but i see it about me.

    Reply
    • Manish B says:
      Apr 3, 2017 at 8:19 am

      I am facing the same issue.

      Reply
  13. Michael says:
    Jul 2, 2016 at 1:31 pm

    I’m looking for a plugin, or SIMPLE code solution that will allow me to create a number of ‘default’ gravatar/avatar images that are color coded based on the member’s gender/orientation. Obvious ones like blue for male, pink for female, but I’ll likely add lavender for transgender and possibly others. Basically, the decision about the ‘default’ avatar that appears for the member (until they upload an image) would at least let people browsing the site know if the person they see posting (or online) is male / female / transgender / etc.. Any ideas?

    Reply
  14. Me says:
    Jun 29, 2016 at 5:46 pm

    Is there code to force the default avatar to be blank? I have it set to blank in the WP settings, but it’s still showing up as mystery man. Is there code to either delete mystery man entirely so it’s not even an option. Or to make sure it’s blank and not mystery man? Thanks!

    Reply
    • WPBeginner Support says:
      Jun 30, 2016 at 10:18 pm

      See our guide how to disable gravatars in WordPress.

      Reply
      • Me says:
        Jul 1, 2016 at 11:54 pm

        Thanks! I tried that already. When I do that, the avatars also disappear from the author box (I’m using Starbox). I’m at a loss. I’ve even checked my WP tables, and it shows the default avatar is set to blank. I can’t figure out how to get rid of mystery man…

        Reply
  15. Michael says:
    Jan 11, 2016 at 1:07 am

    How would one go about rotating a set of images in that Gravatar thumbnail spot? Meaning: if I had 5 different images, to have them randomly appear for users without Gravatars, so there was a variation of the 5?

    Reply
  16. Angelica Costa says:
    Dec 7, 2015 at 2:58 pm

    If anyone is facing issues with child themes, just use:

    $myavatar = get_stylesheet_directory_uri().’/img/favicon.png’;

    It works.

    Reply
    • Mark says:
      May 12, 2016 at 4:34 am

      This was a life saver!

      Reply
    • Julia says:
      Oct 6, 2016 at 12:45 pm

      Great, thanks!

      Reply
  17. Gina Smith says:
    Oct 14, 2015 at 11:27 am

    Thanks for the information!

    Reply
  18. Keely says:
    Jul 9, 2015 at 11:11 am

    Wow – found this post 2 years after my first post and got it working this time :)
    Thanks WP Beginner

    Reply
  19. Caroline says:
    Jul 4, 2014 at 7:38 pm

    Thanks!

    Reply
  20. chris007 says:
    Jun 15, 2014 at 10:07 pm

    okay i get the whole idea but how you put your personal pciture of you into the gravatar that what i’m trying to figure out..

    Reply
    • Thomas says:
      Jun 10, 2016 at 1:00 am

      Goto Gravatar website and sign in with WordPress. Then you can upload your avatar and tie it to one or more of your emails.

      Reply
  21. Alex says:
    May 21, 2014 at 11:19 am

    Thank you!

    Reply
  22. Karan Rawat says:
    Apr 4, 2014 at 3:57 pm

    It works. Thanks Bookmarked your blog!

    Reply
  23. Chuks Emmanuel says:
    Mar 31, 2014 at 4:04 am

    Thank you Syed Balkhi. it really worked for me. just keep the good work going.

    Reply
  24. Adrian O'Farrell says:
    Mar 18, 2014 at 7:23 am

    Hi, just checking what happens next

    Reply
  25. Simen Eggen says:
    Feb 28, 2014 at 1:48 pm

    Thank you so much :) it’s working :D

    Reply
  26. Sadia says:
    Dec 3, 2013 at 5:47 pm

    Thank you so much for these instructions. For some reason, things were wonky when I used a .png file, but a gif worked easy peasy!

    Reply
  27. Katelyn says:
    Nov 29, 2013 at 7:05 pm

    I am having the same issue as Keely. I am using a child theme so get_bloginfo does not work. When I check the URL of the broken image it displays the path to the parent theme. Is there a way to get this to work with a child theme?

    Reply
  28. Akash KB says:
    Nov 28, 2013 at 3:27 am

    What should be the size of the image file to be uploaded to the theme folder?

    Thanks :)

    Reply
  29. Brody says:
    Oct 9, 2013 at 3:18 pm

    Any way to make this use a SSL connection using the same code? Always loads “insecure content”. What changes to make it a secure image during loading?

    Reply
    • WPBeginner Support says:
      Oct 9, 2013 at 4:04 pm

      If you are loading gravatar on a secure page then it should automatically load securely. Also check Settings » General change your site and WordPress address to use https. Let us know if this solved the issue.

      Reply
  30. Pavan Deshpande says:
    Jul 17, 2013 at 11:19 pm

    Thank you for sharing this , i was not able to change the default image but after reading this i changed

    Reply
  31. Keely says:
    Mar 7, 2013 at 11:09 pm

    What if you’re using a child theme …

    I changed the line
    $myavatar = get_bloginfo(‘template_directory’) . ‘/images/gravataricon.gif’;
    to
    $myavatar = get_bloginfo(‘stylesheet_directory’) . ‘/images/gravataricon.gif’;

    but still not working :(

    Reply
    • Editorial Staff says:
      Mar 8, 2013 at 8:22 am

      Is the image not showing or the code altogether is not working (i.e it’s not even adding an option for custom gravatar)?

      Reply
      • Kristen says:
        Jun 5, 2013 at 3:50 pm

        I am having issues with the code also. I used it on another site and it worked perfectly, however on the site I’m currently working on… it shows as an option in the admin panel under settings-discussion, however it is showing as a broken image and does not display on the blog pages either. Any help is greatly appreciated.

        Reply
        • Editorial Staff says:
          Jun 16, 2013 at 3:15 pm

          Right click on the broken image to get the image URL. Open that URL in another tab to verify that the URL is correct.

        • Dizz Markie says:
          Jan 29, 2015 at 11:32 pm

          I am having the same issues on localhost

  32. Rachel says:
    Aug 29, 2012 at 9:21 pm

    I just used your advice here; more explanation that the image needed to be saved in the themes folder too would have been helpful. But your tips here helped me figure some of it out. Thanks.

    Reply
  33. mrahmadawais says:
    Aug 8, 2011 at 8:16 pm

    @wpbeginner Secondly , do you know an good pre image loading plugin for wordpress

    Reply
  34. mrahmadawais says:
    Aug 8, 2011 at 8:16 pm

    @wpbeginner disquess is having some problems at my blog see there http://freakify.com it is not allowing me to upload any custom image>>>? Why

    Reply
  35. wpbeginner says:
    Aug 8, 2011 at 8:15 pm

    @mrahmadawais That is because Disqus is a third party platform….

    Reply
  36. mrahmadawais says:
    Aug 8, 2011 at 7:55 pm

    tell me plz

    Reply
  37. mrahmadawais says:
    Aug 8, 2011 at 7:54 pm

    any one here now to tell me why disquss is not accpting this

    Reply
  38. Crysislevel says:
    Jul 16, 2011 at 11:38 pm

    thanx it worked perfectly! :)

    Reply
  39. Shabil Team says:
    Jun 24, 2011 at 7:49 am

    This gravatar custom code is very cool and really work on my blog. Thank you very much.

    You rock WPbeginner.

    Reply
  40. Shabil Team says:
    Jun 24, 2011 at 7:49 am

    This gravatar custom code is very cool and really work on my blog. Thank you very much.

    You rock WPbeginner.

    Reply
  41. wpbeginner says:
    May 30, 2011 at 1:00 am

    @Kindar We are glad to have you as a user :) Let us know if you have any suggestions.

    Reply
  42. Kindar says:
    May 29, 2011 at 8:49 am

    When ever I search for something on the internet i usually get to see your website.. Now I started follow your website and the stuff you share.. What ever you share its really useful and thats why i always check it up, and see whats new. Also i wanted to thank you for the last subject.

    Reply
  43. Kindar says:
    May 29, 2011 at 8:46 am

    When ever I search for something on the internet i usually get to see your website.. Now I started follow your website and the stuff you share.. What ever you share its really useful and thats why i always check it up, and see whats new. Also i wanted to thank you for the last subject.

    Reply
  44. iur says:
    May 25, 2011 at 8:33 am

    where is located the file /images/gravataricon.gif ?

    Reply
    • Editorial Staff says:
      Jun 1, 2011 at 10:49 am

      Inside your WordPress Theme’s folder.

      Reply
  45. Cee says:
    May 10, 2011 at 11:31 am

    Hi!
    Wow..I’ve gone round and round with code. Not adept with this as a newb…but usually can get things to work.
    I added the code to get a default avatar for guest . It worked. At least in admin. The image shows up in ADMIN..but not on the website.

    I also signed up at gravatar for my own custom gravatar for my ADMIN comments…and it shows up in their “check point”…but cannot get it to show up in my comments.

    Neither does the Guest Gravatar.. but the GRAVATAR image shows up instead.
    My custom image IS checked as default in Discussions. Both images are uploaded to the theme/images and the path to the guest image is correct in the code. I made the images 128 x 128 as suggested online nowadaZe… Dunno if THAT sizing must be specified somewhere? I looked thru the functions code…as best as my bewildered eyes can comprehend..but didn’t finding anything that looked like it would work. Maybe in style.css?… Dunno if it makes a difference. Don’t want to go thru changing everything..and still not work. Have already spent DAYS trying to figure this out. Should be a simple thing.

    Don’t understand why MY admin gravatar isn’t showing. Per what I read…it should be handled via gravatar. The email address used for the gravatar is the same as listed in admin.

    WHAT am I doing wrong/missing?.. I have WP 2.8.4.
    I tried pasting the above code at the top…AND at the bottom… but neither works. Does it matter WHERE you paste it in the functions.php?

    Can you suggest anything?Would DEEPLY appreciate any help you can give. Can give you any code you might need…just specifiy.

    Thank you in advance. tearing out hair..

    Reply
    • Editorial Staff says:
      May 11, 2011 at 6:24 am

      It sounds like that this issue is not with the function rather it is the comments.php file error.

      Reply
  46. Louis Gubitosi says:
    Feb 15, 2011 at 10:06 am

    thanks for this tip. I used this on my site and the default avatar is showing up in the comments section but not in the “Recent Comments” side bar. I’m using the “Get Recent Comments” plugin. Is this treated differently?

    http://interactiveblend.com/blog

    Reply
    • Editorial Staff says:
      Feb 15, 2011 at 2:33 pm

      Unless that plugin has specified a default in their code, this should work. It means the plugin is not coded properly. Contact the developer, and ask them to fix it.

      Reply
  47. martin says:
    Oct 26, 2010 at 12:07 am

    The code works if placed in custom-php.php which has the advantage of sticking through upgrades.

    Do you have any ideas on the code for removing the html calls to gravitar.com in buddypress?

    Reply
  48. JD says:
    Mar 5, 2010 at 8:47 pm

    Thanks for the tip. Works flawlessly.

    Reply
  49. Desik says:
    Nov 16, 2009 at 7:07 pm

    I noticed wordpress is changing the quote into a backquote, you should use ' instead of ’

    Reply
    • Editorial Staff says:
      Nov 18, 2009 at 4:47 pm

      Problem fixed.

      Reply
  50. fantasmo says:
    Jul 23, 2009 at 7:55 am

    This is the code snippet I was looking for.
    But it doesn’t work properly… I put in the code into my functions.php (I’m sure everything is correct, also the path to my picture).

    But when I go to discussion, I can’t see my Avatar, and also the WP-backend is a little bit broken… The code i put into the functions.php shows up above the header of the WP-backend.

    Can you help me please? Maybe I didn’t only a little thing wrong??

    Reply
    • Editorial Staff says:
      Jul 23, 2009 at 9:37 am

      The code above is 100% correct because that is what we are using. I don’t know what you can potentially be doing wrong. But without looking at your codes we won’t be able to help you out. You can hire us for a small fee, and our staff can surely fix the problem.

      Reply
      • Tracy says:
        Sep 5, 2009 at 2:59 pm

        I think I may be having the same trouble as fantasmo. The snippet works and the gravatar shows up within the discussion admin page but when you click on ‘save changes’ to save the options, you get a white screen which displays the footer from the option-discussions.php instead of the full page saying that the options have been saved.

        Reply
    • CC Rogers says:
      Nov 2, 2012 at 6:36 am

      I saw the same results as Fantasmo. When I copy/pasted the code, the blank line between the add_filter and the function was lost for some reason. Putting the blank line back seemed to fix the problem.

      Reply
1 2 »

Leave a Reply Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

Over 1,320,000+ Readers

Get fresh content from WPBeginner

Featured WordPress Plugin
WPForms Logo
WPForms
Drag & Drop WordPress Form Builder Plugin. Learn More »
How to Start a Blog How to Start a Blog
I need help with ...
Starting a
Blog
WordPress
Performance
WordPress
Security
WordPress
SEO
WordPress
Errors
Building an
Online Store
Useful WordPress Guides
    • 7 Best WordPress Backup Plugins Compared (Pros and Cons)
    • How to Fix the Error Establishing a Database Connection in WordPress
    • Why You Need a CDN for your WordPress Blog? [Infographic]
    • 25 Legit Ways to Make Money Online Blogging with WordPress
    • Self Hosted WordPress.org vs. Free WordPress.com [Infograph]
    • Free Recording: WordPress Workshop for Beginners
    • 24 Must Have WordPress Plugins for Business Websites
    • How to Properly Move Your Blog from WordPress.com to WordPress.org
    • 5 Best Contact Form Plugins for WordPress Compared
    • Which is the Best WordPress Popup Plugin? (Comparison)
    • Best WooCommerce Hosting in 2019 (Comparison)
    • How to Fix the Internal Server Error in WordPress
    • How to Install WordPress - Complete WordPress Installation Tutorial
    • Why You Should Start Building an Email List Right Away
    • How to Properly Move WordPress to a New Domain Without Losing SEO
    • How to Choose the Best WordPress Hosting for Your Website
    • How to Choose the Best Blogging Platform (Comparison)
    • WordPress Tutorials - 200+ Step by Step WordPress Tutorials
    • 5 Best WordPress Ecommerce Plugins Compared
    • 5 Best WordPress Membership Plugins (Compared)
    • 7 Best Email Marketing Services for Small Business (2019)
    • How to Choose the Best Domain Registrar (Compared)
    • The Truth About Shared WordPress Web Hosting
    • When Do You Really Need Managed WordPress Hosting?
    • 5 Best Drag and Drop WordPress Page Builders Compared
    • How to Switch from Blogger to WordPress without Losing Google Rankings
    • How to Properly Switch From Wix to WordPress (Step by Step)
    • How to Properly Move from Weebly to WordPress (Step by Step)
    • Do You Really Need a VPS? Best WordPress VPS Hosting Compared
    • How to Properly Move from Squarespace to WordPress
    • How to Register a Domain Name (+ tip to get it for FREE)
    • HostGator Review - An Honest Look at Speed & Uptime (2019)
    • SiteGround Reviews from 1032 Users & Our Experts (2019)
    • Bluehost Review from Real Users + Performance Stats (2019)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Create an Email Newsletter the RIGHT WAY (Step by Step)
    • 7 Best CRM Software for Small Businesses (Compared)
    • How to Create a Free Business Email Address in 5 Minutes (Step by Step)
    • How to Install Google Analytics in WordPress for Beginners
    • How to Move WordPress to a New Host or Server With No Downtime
    • Why is WordPress Free? What are the Costs? What is the Catch?
    • How to Make a Website in 2019 – Step by Step Guide
Deals & Coupons (view all)
WPeka
WPeka Coupon
Get 25% OFF on WPeka premium WordPress plugins and themes.
Liquid Web
Liquid Web Coupon
Get exclusive 69% OFF on Liquid Web managed WordPress hosting plans for first 3 months.
Featured In
About WPBeginner®

WPBeginner is a free WordPress resource site for Beginners. WPBeginner was founded in July 2009 by Syed Balkhi. The main goal of this site is to provide quality tips, tricks, hacks, and other WordPress resources that allows WordPress beginners to improve their site(s).

Site Links
  • About Us
  • Contact Us
  • FTC Disclosure
  • Privacy Policy
  • Terms of Service
  • Free Blog Setup
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • SeedProd
  • Nameboy
  • RafflePress

Copyright © 2009 - 2019 WPBeginner LLC. All Rights Reserved. WPBeginner® is a registered trademark.

Managed by Awesome Motive | WordPress hosting by HostGator | WordPress CDN by MaxCDN | WordPress Security by Sucuri.