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
    • Business Name Ideas
  • 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» Beginners Guide» How to Add Featured Images or Post Thumbnails in WordPress

How to Add Featured Images or Post Thumbnails in WordPress

Last updated on November 8th, 2020 by Editorial Staff
157 Shares
Share
Tweet
Share
Pin
Free WordPress Video Tutorials on YouTube by WPBeginner
How to Add Featured Images or Post Thumbnails in WordPress

Featured images also known as post thumbnails are a well-known WordPress feature supported by most themes.

They are the primary image for your blog posts, and they often appear next to the heading on your home page and social media. All popular WordPress themes come with built-in support for featured images.

In this article, we’ll show you how to easily add featured images or post thumbnails in WordPress.

Adding featured images in WordPress

Beginners Guide to Featured Images in WordPress

Featured images are a WordPress theme feature. Almost all WordPress themes come with built-in support for featured images and display them beautifully across different areas of your WordPress website.

Featured images preview on a typical WordPress blog

As humans, we find visual elements more engaging than plain text. Featured images help you make your blog pages look more appealing.

They also help you build user engagement and increase page views. Search engines and social media websites may also use these images and display them in search results and social media news feed.

Mostly featured images are used for blog posts, but you can also set featured images for pages and custom post types.

Note: Featured images are not the same as cover image. See the difference between cover image vs featured image in WordPress.

That being said, let’s take a look a how to easily add featured images in WordPress.

Adding Post Thumbnail or Featured Image in WordPress

To add a featured image in a WordPress post, simply edit or create a new blog post.

In the content editor, you’ll find the featured image tab in the right column.

Featured image section on post edit screen

You need to click on the ‘Set Featured Image’ area, and this will bring up the WordPress media uploader popup.

From here, you can upload an image from your computer or use an existing image from your media library. Once you select the image, simply click on the Set Featured Image button.

Setting a featured image

WordPress will now show a preview of the featured image in the right column. However, the actual featured image would look different depending on your WordPress theme.

You can now save or publish your post and preview it to see how the featured image will appear on your live website.

Depending on settings defined by your theme developer, your featured image will automatically appear with your posts.

How to Find and Effectively Use Featured Images?

Now, the next big question that most beginners come across is where to find images to use as featured images?

You cannot just use Google image search and use any image from the internet. Those images are protected by copyright laws and using them without proper permission can cause legal trouble.

Luckily, there are several resources available that you can use to find free images for your blog posts.

Our top favorites are:

  • Shutterstock – They have a few free images, but the real value comes from their paid plans which give you access to tons of high quality photos, illustrations, drawings, videos, and more. This is what we use for WPBeginner site.
  • Unsplash – A popular online resource publishing high-resolution images that you can use on your website and other projects.
  • Negative Space – A well-organized collection of copyright-free images.
  • New Old Stock – A collection of vintage photographs from public archives.
  • Unsplash is a popular free image resource for bloggers

    Note: All these sources provide high-resolution images, which means they are large in filesize and dimensions. You’ll need to optimize images for the web before using them as featured images.

    Featured images are handled by your WordPress theme. In order to change how your theme displays featured images, you’ll need some basic CSS or WordPress coding skills.

    If you are comfortable with coding, then continue reading for more tips.

    Theme Developers Guide to Featured Image and Post Thumbnails in WordPress

    The featured image is a popular feature supported by almost all WordPress themes. In rare situations, you may come across a theme that does not support featured images, or you may not like how they handle feature images.

    In that case, you can add featured image support to your theme or change how it appears.

    If you are comfortable editing WordPress theme files and know your way around a little custom CSS, then you can do it yourself.

    If your theme does not support featured images, then you’ll not see the option to add a featured image in the content editor.

    To add featured image support in a WordPress theme, you need to add this line of code in your theme’s functions.php file:

    add_theme_support( 'post-thumbnails' );
    

    This code will enable featured image support for posts and pages. You can now go to posts or page block editor, and you will see the featured image option enabled.

    However, when you set a featured image, it will not automatically display in your WordPress theme. To display featured images in your theme, you need to edit your templates and add this line of code where you want to display the featured image:

    <?php the_post_thumbnail(); ?>
    

    The files you add the above code in will vary based on your theme. You will want to add the code inside your post loop.

    Related: See WordPress theme hierarchy cheat sheet to better understand how themes work.

    The above code is the basic function that you need to add featured image support and display featured images in your theme. To set image size for featured images you upload, you need to add this line of code to your functions.php file.

    set_post_thumbnail_size( 50, 50);
    

    The parameters for set_post_thumbnail_size are in this order: width, height.

    You can also set additional image sizes to use with the_post_thumbnail() function. For example:

    // Image size for single posts
    add_image_size( 'single-post-thumbnail', 590, 180 );
    

    In this example we have added a new image size called single-post-thumbnail with 590px with and 180px height.

    To use this image size in our theme, we will still need to add it to the appropriate theme file.

    Checkout our guide on adding additional image sizes in WordPress for more details.

    If you have previously uploaded featured images, but they are still appearing in some other size, then you need to regenerate thumbnails and image sizes for older posts.

    Below is an example of the featured image function with specific image size.

    <?php the_post_thumbnail( 'single-post-thumbnail' ); ?>
    

    This is the broken-down version of the full functionality. There are many other things you can do with featured images.

    FAQs About Featured Images in WordPress

    As a beginner, you may come across questions or issues when using featured images on your blog. Following are just some of the most frequently asked questions about featured images.

    1. Why featured image is appearing twice on my posts?

    Sometimes beginner add a featured image and then add the same image inside the content part of the post editor.

    All you have to do is remove the image from the content area and only use featured image metabox to add featured image. For more on this topic, see our article on how to fix featured image appearing twice in WordPress.

    2. What is the difference between the cover image and featured image?

    Cover images are used in the content area of your posts or pages. They are normally used to separate different sections of a lengthy page or post.

    Featured image is the representative image of an article. It does appear before or alongside the content but not inside the actual article.

    For more on this topic, see our guide on the difference between cover image and featured image in WordPress.

    3. How to display featured images next to recent blog posts?

    The WordPress block editor comes with a ‘Latest Posts’ block which allows you to display recent posts with post thumbnails.

    You can also display recent posts with thumbnails in sidebar widgets using Recent Posts Widget Extended plugin. For more details, see our article on how to display recent posts in WordPress.

    4. How to remind authors to add featured image in WordPress?

    Featured images are prominently displayed on your homepage, blog page, and other archive pages.

    If you or another author on your blog forgot to set one and published the post then it will appear without a featured image. This will look bad and inconsistent, which is not good for user experience.

    You can install and activate the Require Featured Image plugin, which will show a notification when anyone tries to publish a post without featured image.

    Require featured image

    For more details, see our article on how to require featured images in WordPress.

    We hope that this article helped you learn how to add featured images or post thumbnails in WordPress. You may also want to check out our beginner’s guide to image SEO which shows how to optimize your WordPress images for search engines.

    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.

157 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • How to Properly Move Your Blog from WordPress.com to WordPress.org

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

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

  • How to Fix the Error Establishing a Database Connection in WordPress

    How to Fix the Error Establishing a Database Connection in WordPress

  • Checklist

    Checklist: 15 Things You MUST DO Before Changing WordPress Themes

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

115 Comments

Leave a Reply
  1. Josh says:
    Dec 31, 2020 at 1:45 am

    Quick question, is it possible to add featured image support to a theme without WordPress generating extra thumbnail sizes?

    Reply
    • WPBeginner Support says:
      Dec 31, 2020 at 10:01 am

      Yes, you would use the add_theme_support and the_post_thumbnail only from this article to do that. You may want to set a size for the featured images so they are all the same size.

      Reply
      • Josh says:
        Dec 31, 2020 at 4:22 pm

        Would that look something like

        or does it need to be a numerical value or something else?

        Reply
        • WPBeginner Support says:
          Jan 4, 2021 at 10:12 am

          It would be the same code as in our article above :)

  2. Nwankwo ekene says:
    Nov 7, 2020 at 2:31 am

    My site is not showing featured image on Google search and when shared to WhatsApp
    What should I do to fix this

    Reply
    • WPBeginner Support says:
      Nov 9, 2020 at 1:21 pm

      You would want to ensure you have the correct markup similar to our guide below for Facebook:
      https://www.wpbeginner.com/wp-tutorials/how-to-fix-facebook-incorrect-thumbnail-issue-in-wordpress/

      Reply
  3. R Taylor says:
    Jun 14, 2020 at 3:10 pm

    How can I set the “recent blogs” on the right of screen so they stay in order by date? They keep moving around everytime I open blog. Thanks

    Reply
    • WPBeginner Support says:
      Jun 16, 2020 at 8:47 am

      You would want to ensure your theme or a plugin isn’t modifying the order. By default, the recent posts widget would display by date

      Reply
  4. Neshadkhan says:
    May 23, 2020 at 6:29 pm

    Hi wpbegginers i am following you from last 2 year please tell me how to add our post title on thumbnail image like a lot of blogs are doing that

    Reply
    • WPBeginner Support says:
      May 27, 2020 at 8:24 am

      Depending on what you’re looking at, some of those are added using image editors such as GIMP or Photoshop

      Reply
  5. Rizard says:
    Oct 18, 2019 at 7:35 pm

    Thank you.. this works for me..

    Reply
    • WPBeginner Support says:
      Oct 21, 2019 at 10:06 am

      Glad our guide was helpful :)

      Reply
  6. Sunil says:
    Sep 22, 2019 at 1:59 pm

    I use supermag theme and my one post feture image is showing to other post ….how to solve it

    Reply
    • WPBeginner Support says:
      Sep 23, 2019 at 10:08 am

      You would want to reach out to your theme’s support for how to fix display errors.

      Reply
  7. Nate says:
    Mar 11, 2019 at 7:37 am

    how can I make the the featured image disappear when they click the post? I just want the picture to be featured.

    Reply
    • WPBeginner Support says:
      Mar 11, 2019 at 12:09 pm

      That would be determined by your theme, if you reach out to your theme’s support they may have a recommended method to remove the featured image in the post itself.

      Reply
  8. Nick Sim says:
    Jan 25, 2018 at 7:11 pm

    great explanation! But I’m having issues adding the mutliple post thumbnails into a custom post type. How do you solve this?

    Reply
  9. kar says:
    Jan 24, 2018 at 10:26 am

    Hi, my featured image overrides my main banner image. Everytime I set a featured image for a post, it overrides the main site’s banner image. How do I stop it from happening?

    Reply
  10. Maj says:
    Jan 15, 2018 at 10:45 pm

    Hi all, actually am using WordPress 4.9.1 to upload home page video from YouTube for our website, but after I uploaded the video and access the website from the laptop I noticed that the poster image that it supposed to be displayed only when access via Phone it’s appearing in the home page for 3 seconds and this causes the first 3 seconds of the uploaded video not to be seen then can watch the video.
    Please I need your help and suggestion to solve this issue. Thank you so much

    Reply
  11. carlos ballin says:
    Jan 5, 2018 at 2:00 pm

    i need 2 or 3 feature image, i install DFI plugin but does not work. Exist other proccess for todo that ?

    Reply
  12. Joao Cerca says:
    Dec 27, 2017 at 2:02 pm

    Hi,

    I have a problem with featured image. Everytime I upload a new picture for a profile, the picture does not turn into a thumbnail in the list of profiles. Is it a problem of the theme or the definition of the wordpress?

    Here you can check my problem
    Best Regards,

    Reply
    • WPBeginner Support says:
      Dec 27, 2017 at 4:25 pm

      Hi Joao Cerca,

      We really can’t say what may be causing the issue. Are you using WordPress.com? In that case you may want to reach out to WordPress.com support. If you are on a self hosted WordPress.org website, then you can try our WordPress troubleshooting tips to figure out the issue.

      Reply
  13. Emily says:
    Nov 9, 2017 at 5:16 am

    MOST of the time when I share links to my posts on Facebook, the featured image appears as the thumbnail but sometimes it just doesn’t for no reason. I’m not doing anything fancy (or even differently) from week to week. What’s up?

    Reply
    • Saransh Sagar says:
      Apr 14, 2019 at 12:30 pm

      hey, it takes some times to load your post,page image or feature image and loading time may vary from different types of social media ! in linkedin it fetch very fast and it fb it takes some time !

      Reply
  14. Nsereko Eriab says:
    Oct 5, 2017 at 2:40 am

    hi, i want to put 5 post excerpts on my homepage but i want the most new one (the first post) to have a bigger thumbnail image than the other 4. help, thx

    Reply
  15. Bankole Emmanuel says:
    Aug 19, 2017 at 9:33 am

    pls what i need is how to insert my first post image as my featured image

    Reply
  16. Liz Johnson says:
    Jul 5, 2017 at 7:22 pm

    Hey Thanks for posting this! I’d just left you a question about it. My theme has a featured image option. Plus I found a setting in my general settings for the thumbnail, but it still isn’t showing up when I post on Twitter. Not sure if I need to go to the CSS coding option?!?? Thanks

    Reply
  17. Amanda says:
    Mar 30, 2017 at 11:47 pm

    Hello. I’ve been trying to find help with my blog, but I can’t seem to find the answers I’m looking for. I am using WordPress’ theme Hemingway, and I can’t figure out how to get the picture that is at the top of my post to show up in my home page next to the post summary. I’ve tried setting a featured image, but it still doesn’t show up on the home page, and when I do that it puts the image in the header when I go to the post. When I was looking at the Hemingway sample on the WordPress site it showed pictures next to posts in the homepage. I don’t understand why I can’t do that on my blog.

    Reply
  18. Rul says:
    Mar 27, 2017 at 5:54 am

    i’m using zerif pro theme but now my portfolio featured image is not arranged correctly (2 rows x 4 columns) like how it supposed to be. any idea what causes this issue and how to fix it?

    Reply
  19. Kim says:
    Mar 20, 2017 at 4:01 pm

    Hi. I have the featured image turned on my blog. It was working just fine until today. With our latest blog post it isn’t displaying correctly on our homepage when viewed from a cell phone. All of the post below it on the homepage show up correctly, but I can’t figure out where I went wrong with this one. It shows with a huge gap in between some of the words. Any suggestions on how to fix this?

    Reply
  20. Dennis says:
    Mar 13, 2017 at 11:05 am

    Hi,

    Any suggestions for plugins to generate post-thumbnails // featured images for Facebook videos? Already tried ‘Featured Video Plus’ but that one is not working for Facebook-videos

    Reply
  21. Asen says:
    Mar 8, 2017 at 10:32 am

    I want my featured images to appear on my posts and for some reason they don’t appear when I click the particular category in my main menu.

    Let me explain this better- if you visit my site and if you click on “Action Heroes” in the menu tab, the posts appear with the excerpt but there are no images displayed. I want the title of the post to appear with the excerpt, as well as the associated featured image before the reader clicks on “”Continue reading. The same is for the News and Facts section.

    How can I change that and why the image don’t appear?

    Reply
    • WPBeginner Support says:
      Mar 8, 2017 at 6:07 pm

      Hi Asen,

      Most likely your WordPress theme does not display featured images correctly. Try switching to a default WordPress theme like Twenty Seventeen, if it displays your featured images then you can contact your theme developer for support.

      Reply
  22. pawan kumar mandawariya says:
    Feb 19, 2017 at 5:33 am

    Dear wpbeginner team,

    can you guide me how to display post images on homepage. I am unable to to this. At while, images are showing on the post/ articles, but not showing on the homepage. You can see this problem here

    Reply
    • WPBeginner Support says:
      Feb 20, 2017 at 1:42 am

      Hi Pawan,

      This could be a theme or plugin issue. This could also an issue with SSL. Please see our WordPress troubleshooting guide to figure out whats causing the issue.

      Reply
  23. hristiqn says:
    Oct 26, 2016 at 10:00 am

    Hello , I use WordPress witn Fashionistas theme intsalled, but I understand the featured image is not showing the full image uploaded. I would like to have the full image appear instead of the default theme sizing of the featured image. What settings I should do in the Admin panel ?
    Thanks in advance.
    And really I hope you can help me.

    Reply
  24. Tony Joy says:
    Oct 20, 2016 at 1:48 pm

    WordPress is automatically cropping my featured image. Can you help me out?

    Reply
  25. balaram tankala says:
    Jul 23, 2016 at 3:30 am

    thank you for this article….

    Reply
    • mahesh chapgaonkar says:
      Oct 7, 2016 at 5:43 am

      thank you…

      Reply
  26. Esch says:
    Jul 9, 2016 at 1:49 pm

    What do I need to do to only have the featured image shown next to each post in the blog roll, but not when you are reading individual posts? Do I insert the line of code into my index.php file or is there something else? Thanks!

    Reply
  27. Jurgen says:
    Jun 29, 2016 at 2:21 pm

    Hi,
    is it possible to embed a code as a featured image? For example: Getty images offers free pictures for bloggers. Once i copy the code its easy to embed in the post, but I need the pictures as my featured image. Is there a way I can do this? Plugin?
    Thanks for your help!

    Reply
  28. lauren lynch says:
    Jun 22, 2016 at 4:12 pm

    I cant find the featured pictures bit on this and can you use this for hp windows laptop?????

    Reply
    • WPBeginner Support says:
      Jun 22, 2016 at 10:24 pm

      Are you sure you are using self hosted WordPress.org site? Please see our guide on the difference between self hosted WordPress.org vs free WordPress.com blog.

      Reply
  29. Sumit Kumar Gogawat says:
    Jun 16, 2016 at 5:55 am

    I want to remove blank space of featured image from wordpress post. Can you please help me.

    Reply
  30. carlita says:
    Jun 14, 2016 at 10:20 am

    Need help with distorted pics on mobile look of site. When you click read more the photos are distorted can someone explain what i need to do. thanks

    Reply
  31. Adam says:
    May 30, 2016 at 1:16 am

    How do I edit a post so that the picture is beside a blog post description?

    Reply
  32. Harini says:
    May 4, 2016 at 6:56 am

    I do not know how to convert html file to wordpress. As a beginner can you help me.

    Reply
  33. Astha says:
    May 3, 2016 at 2:03 am

    thanks :)

    Reply
  34. Abs says:
    Apr 23, 2016 at 2:36 am

    Hi,

    Thanks for the info. I’ve been following this blog and help a lot.

    I have a question regarding the thumbnail.

    1. It is possible the thumbnail or featured image appeared on the blog roll but when the user click and open the entire post, the feature image will be hide?

    2. Or it is possible that one of the image inside the post will be use as the featured image?

    The reason for this is, in my blog not all post have image on the beginning of the post. When I set featured image, it will automatically insert on the beginning of the post.

    Thanks.

    Reply
  35. Isabel says:
    Apr 18, 2016 at 12:53 am

    Hi, I am able to upload a feature image successfully but when I open the post, the image doesn’t show. What might be the problem? For better understanding you can check out my post below to get what I mean. I use the plugin WP Smush as well so not sure if this affects.

    Reply
  36. Gaby says:
    Apr 14, 2016 at 8:15 pm

    I’d been using Timthumb for a while now, and I was kinda afraid to change to WordPress’ built in featured images, but this tutorial worked perfectly – and Worpress is handling different sized images just fine! So thank you so much for it!
    Cheers!

    Reply
  37. Tracy Quinn says:
    Mar 5, 2016 at 7:59 pm

    Thanks for the article, really helped me out today, I now have pictures on my blog roll.
    Cheers Tracy

    Reply
  38. Filip says:
    Mar 4, 2016 at 1:35 pm

    Thanks for making it so simple! I was petrified of going into the code, but with your help I finally fixed the thing that has been bugging me for days!

    Thank you!

    Reply
  39. Barry Richardson says:
    Jan 2, 2016 at 9:15 am

    I have set a Featured Image for most of my blog posts. (In each case the image is already present within the post.) My Reading setting is set to show the latest post when viewing the Home page.

    However, on the Home page the Featured image is repeated above the post, and I don’t want that. How can I prevent that duplication?

    I’m not getting any response from the WP Support Forum.

    Reply
    • bobbi says:
      Jan 30, 2016 at 6:58 pm

      I have the same issue as Barry.
      So I remove the original, and try to remember to set FI first.. it’s sort of ok.
      But when hover over image I don’t get the title info (Firefox) that is there.. ???

      Reply
  40. Milagros Cuevas says:
    Nov 2, 2015 at 9:56 am

    Hello,

    I’m not sure if this fits under the “featured image” issue, but I am hoping to use a image link map on the featured image (my client insist on having it), but I cannot seem to find where I can edit the code easily. The theme they have selected is utilizing a left side bar as the regular “header” so I’ve had to set a featured image to be the “header” on each post. I don’t want to start messing around with the .php or stylesheet until I know whether or not I can actually do it, or more insight on how to do it.

    Reply
  41. Anne Seabrook says:
    Oct 23, 2015 at 5:21 pm

    Help!! Our website crashed and it’s been rebuilt but now there is a problem with featured image. The images are cutting off the top of the pictures, such as peoples heads. Also, when setting featured images, pictures are not uploading to featured image size and they are loading in the centre, not to the left.
    Hope this makes sense. I have tried everything I can think of, unsure about changing coding in php as previous effort crashed site. Any help greatly received.

    Reply
    • WPBeginner Support says:
      Oct 24, 2015 at 12:10 pm

      Please see our guide How to regenerate thumbnails and new image sizes in WordPress.

      Reply
  42. Lionel says:
    Oct 11, 2015 at 3:30 am

    Thanks for this tip, that’s exactly what I need ! :)

    Reply
  43. Daniel Keith says:
    Jun 16, 2015 at 12:19 am

    Hi there,
    Great tutorial indeed. Especially, the links you provided at the end of this tutorial are awesome.
    Customizing a WordPress website is always a charm.

    Reply
  44. Chao says:
    Jun 10, 2015 at 12:06 am

    How to display featured image below page title?

    Reply
  45. Maiya says:
    Mar 29, 2015 at 10:45 pm

    How do I make the thumbnails of my featured images bigger?

    Reply
    • Dinnae says:
      Apr 25, 2015 at 6:05 pm

      That all depends on the theme you are using. :) It’s all about the styling. Some themes have functionality to allow you to choose the layout of your blog and change the sizing, but many don’t. If your theme is one that doesn’t, you will have to make the change in your styles.css file. If it DOES, it will be somewhere in your theme options area. Good luck! :)

      Reply
  46. jay says:
    Jan 8, 2015 at 1:10 pm

    It doesnt appear on my post editor. appears the one from the theme but does not work! any solution? thanks a lot

    Reply
  47. WPBeginner Staff says:
    Nov 7, 2014 at 8:38 pm

    Please make sure that there is no space after the last command at the end of your functions.php file. Alternately, you can also create a site-specific plugin and paste your code there.

    Reply
  48. Ratio says:
    Nov 7, 2014 at 6:43 am

    Hi, i’ve tried to add the code to my functions.php. This is what was the “response”: Warning: Cannot modify header information – headers already sent by (output started at
    Please help!

    Reply
  49. Mohsin Alam says:
    Jul 29, 2014 at 4:33 pm

    Another great help! I’ve got rid of thumbnail issue. You are rocks my brother Syed.

    Reply
  50. kumarapush says:
    Jun 27, 2014 at 10:21 pm

    Thanks for detailed post about adding Thumbnail and Featured Image.

    For my website, I display recent post in Sidebar and Related post at end of every post.

    Is there any way that I can have different Thumbnail image for Sidebar and Featured Post at the end of the Page, for same post?

    Basically, I want to have 2 featured images for single post. Thanks.

    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
PushEngage
PushEngage
Increase your website traffic & revenue with push notifications. 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]
    • 30 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 2020 (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 (2020)
    • 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 (2020)
    • SiteGround Reviews from 4196 Users & Our Experts (2020)
    • Bluehost Review from Real Users + Performance Stats (2020)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Create an Email Newsletter the RIGHT WAY (Step by Step)
    • Free Business Name Generator (A.I Powered)
    • 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 2020 – Step by Step Guide
Deals & Coupons (view all)
MainWP
MainWP Coupon
Get 15% OFF on MainWP WordPress multisite manager plugin.
Web Hosting Hub
Web Hosting Hub Coupon
Get 44% off Web Hosting Hub hosting plans.
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).
Join our team: We are Hiring!

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

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

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