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» Tutorials» How to Increase the Maximum File Upload Size in WordPress

How to Increase the Maximum File Upload Size in WordPress

Last updated on March 1st, 2019 by Editorial Staff
518 Shares
Share
Tweet
Share
Pin
Free WordPress Video Tutorials on YouTube by WPBeginner
How to Increase the Maximum File Upload Size in WordPress

Do you want to increase the maximum file upload size in WordPress. Some times low file upload size limit can stop you from uploading files via media uploader, or install plugins and themes. In this article, we will show you how to easily increase the maximum file upload size in WordPress to fix those issues.

Increasing maximum file upload size in WordPress

Note: This is an intermediate level tutorial. It may not work with some shared hosts in which case you would have to ask your hosting service provider for support. We use HostGator, and they are more than helpful when it comes to issues like this.

Video Tutorial

Subscribe to WPBeginner

If you don’t like the video or need more instructions, then continue reading.

How to Check Your Maximum File Upload Size Limit in WordPress?

WordPress will automatically show the maximum file upload size limit when you are uploading images or media. To check it you can simply go to Media » Add New page and you will see the maximum file uplaod size limit for your WordPress site.

Checking maximum file upload size limit in WordPress

1: Theme Functions File

There are cases where we have seen that just by adding the following code in theme’s functions.php file, you can increase the upload size:

@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );

2. Create or Edit an existing PHP.INI file

For this method you will need to access your WordPress site’s root folder by using FTP or File Manager app in your hosting account’s cPanel dashboard.

In most cases if you are on a shared host, then you will not see a php.ini file in your directory. If you do not see one, then create a file called php.ini and upload it in the root folder. In that file add the following code:

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300

This method is reported to work for many users. Remember if 64 doesn’t work, then try 10MB (sometimes that work).

3. htaccess Method

Some people have tried using the .htaccess method where by modifying the .htaccess file in the root directory, you can increase the maximum upload size in WordPress. Edit the .htaccess file in your WordPress site’s root folder and add the following code:

php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300

Again, it is important that we emphasize that if you are on a shared hosting package, then these techniques may not work. In that case, you would have to contact your web hosting provider to increase the limit for you.

We hope this article helped you increase the maximum file upload size in WordPress. If you are still having issues, then follow the steps in our WordPress troubleshooting guide to fix it.

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.

518 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • Google Analytics in WordPress

    How to Install Google Analytics in WordPress for Beginners

  • 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)

  • 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

391 Comments

Leave a Reply
  1. Daniyar Nauryz says:
    Mar 3, 2021 at 4:51 pm

    htaccess Method has worked for me.

    Reply
    • WPBeginner Support says:
      Mar 4, 2021 at 10:06 am

      Glad our recommendation worked for you :)

      Reply
  2. furqan says:
    Jan 19, 2021 at 3:09 pm

    its not working.

    Reply
    • WPBeginner Support says:
      Jan 20, 2021 at 9:41 am

      If the recommendations are not working for you, we would recommend reaching out to your hosting provider and they should be able to assist if this is something they’ve set on their end.

      Reply
  3. Abdullah Ashraf says:
    Dec 8, 2020 at 2:01 pm

    Thank you so much. I tried all the methods and the last method was helpful for me.
    I would like to know should I undo the second last step that was php.ini?

    Reply
    • WPBeginner Support says:
      Dec 9, 2020 at 9:24 am

      It is not required to remove that file but you can remove it if it is not working for your server.

      Reply
  4. Bradley says:
    Nov 19, 2020 at 10:00 am

    None work.

    Reply
    • WPBeginner Support says:
      Nov 20, 2020 at 10:10 am

      If none of our recommendations work, we would recommend reaching out to your hosting provider to see if it is a restriction that they have set on their servers.

      Reply
  5. Ben says:
    Nov 1, 2020 at 9:19 am

    If you have access to the FTP, can I just upload the file in the wp-content/uploads/[year]/[month] folder?

    Reply
    • WPBeginner Support says:
      Nov 2, 2020 at 11:21 am

      If you do that you would need a plugin to find the images, we have a guide on how to do that below:
      https://www.wpbeginner.com/plugins/how-to-bulk-upload-wordpress-media-files-using-ftp/

      Reply
  6. naved ahmed says:
    Oct 16, 2020 at 9:38 pm

    Thanks a lot
    .htaccess method worked for me.
    You saved my lot of time.
    Thanks again.

    Reply
    • WPBeginner Support says:
      Oct 19, 2020 at 9:58 am

      Glad our guide was able to help you :)

      Reply
  7. Adio Usman says:
    Sep 22, 2020 at 11:11 am

    Does this method works for restoring backup that is up to 3.5gb manually?

    Reply
    • WPBeginner Support says:
      Sep 23, 2020 at 9:27 am

      It would depend on the method you are using but it could help with restoring a backup that large.

      Reply
  8. viren says:
    Aug 27, 2020 at 7:10 am

    method 3 is perfectly worked for me.keep inspiring us.great work man.thnks

    Reply
    • WPBeginner Support says:
      Aug 27, 2020 at 10:44 am

      Glad our recommendation was helpful :)

      Reply
  9. ayman says:
    Aug 23, 2020 at 6:36 am

    .htaccess methode worked with me

    Reply
    • WPBeginner Support says:
      Aug 25, 2020 at 10:09 am

      Glad our recommendation was helpful :)

      Reply
  10. Sanchit Setia says:
    Aug 22, 2020 at 11:32 am

    Does this work on free hosting?

    Reply
    • WPBeginner Support says:
      Aug 24, 2020 at 3:34 pm

      You would want to check with your hosting provider if you are concerned

      Reply
  11. bara says:
    Jun 26, 2020 at 7:59 am

    It works for me

    Reply
    • WPBeginner Support says:
      Jun 26, 2020 at 9:01 am

      Glad our recommendation helped you :)

      Reply
  12. abc says:
    May 20, 2020 at 11:34 am

    nothing is working for lms

    Reply
    • WPBeginner Support says:
      May 21, 2020 at 8:41 am

      If none of the recommendations worked we would recommend reaching out to your hosting provider for assistance.

      Reply
  13. Ahmad says:
    May 14, 2020 at 2:05 am

    I tried this but the size did not change… status is same please help what should I do know I am using localhost

    Reply
    • WPBeginner Support says:
      May 14, 2020 at 9:21 am

      You would want to try restarting your localhost service just in case, otherwise, you would want to ensure you added/editied the php.ini correctly for the most common reason.

      Reply
  14. Vittorio says:
    Apr 18, 2020 at 8:54 am

    I think
    @ini_set( ‘upload_max_size’ , ’64M’ );

    should be
    @ini_set( ‘upload_max_filesize’ , ’64M’ );

    Reply
    • WPBeginner Support says:
      Apr 21, 2020 at 12:55 pm

      upload_max_size currently increases that value as well as a few other things which is why we don’t use upload_max_filesize

      Reply
  15. MFoale says:
    Apr 16, 2020 at 3:26 pm

    Thank you. The 3rd method worked for me. Very useful post and video.

    Reply
    • WPBeginner Support says:
      Apr 17, 2020 at 10:51 am

      You’re welcome, glad we were able to help :)

      Reply
  16. Masud Rana says:
    Apr 11, 2020 at 9:07 am

    Wow !its work. Thanks

    Reply
    • WPBeginner Support says:
      Apr 14, 2020 at 11:27 am

      Glad our guide could help you :)

      Reply
  17. Oliver says:
    Apr 9, 2020 at 12:01 pm

    IT WORKS!!! THANKS

    I made a file ini.php then uploaded it, then renamed it from ini.php.txt to ini.php and it worked.

    thanks

    Reply
    • WPBeginner Support says:
      Apr 10, 2020 at 9:07 am

      You’re welcome, glad our guide was able to help :)

      Reply
  18. Brad says:
    Apr 2, 2020 at 9:36 pm

    None of these works

    Reply
    • WPBeginner Support says:
      Apr 3, 2020 at 9:04 am

      If our recommendations do not work you would want to reach out to your hosting provider to ensure they do not have it as part of their settings.

      Reply
  19. Arivazhagan says:
    Feb 23, 2020 at 8:10 am

    Method 2 worked for me thanks a lot ive been struggling with this for two days …

    Reply
    • WPBeginner Support says:
      Feb 24, 2020 at 11:45 am

      You’re welcome, glad our recommended solution was able to help you :)

      Reply
  20. Sujan Chakraborty says:
    Jan 3, 2020 at 7:24 am

    you are great.I fix my problem by reading you post.Tnx :D

    Reply
    • WPBeginner Support says:
      Jan 3, 2020 at 10:17 am

      Glad our article could be helpful :)

      Reply
  21. Krakawid says:
    Dec 14, 2019 at 1:22 pm

    Method 3 worked

    Reply
    • WPBeginner Support says:
      Dec 16, 2019 at 10:40 am

      Glad our recommendation worked for you :)

      Reply
  22. Tung says:
    Nov 8, 2019 at 3:54 am

    Method 1 worked wonders for me. Thanks a bunch!

    Reply
    • WPBeginner Support says:
      Nov 8, 2019 at 9:40 am

      You’re welcome, glad our recommendation worked for you :)

      Reply
  23. Trasadu says:
    Oct 11, 2019 at 11:21 pm

    Thanks Method 3 really worked for me.

    Reply
    • WPBeginner Support says:
      Oct 14, 2019 at 10:27 am

      Glad our recommendation was helpful :)

      Reply
  24. Asad says:
    Sep 5, 2019 at 8:11 am

    How can i increase the upload limit while i have the wordpress hosting also functions.php isn’t updating

    Reply
    • WPBeginner Support says:
      Sep 5, 2019 at 8:59 am

      If the file will not update, you would want to reach out to your hosting provider and they should be able to assist

      Reply
  25. Chris says:
    Aug 17, 2019 at 1:45 am

    I want to increase the limit to 250mb but i dont know if this exposes my site to security treats, though am only using gravity form and I have also set to disable php execution on my upload folder. And have allowed only jpg, and mp3 files.
    Please do you think this may affect my site load times as huge upload is coming from several users?

    Reply
    • WPBeginner Support says:
      Aug 19, 2019 at 10:43 am

      If multiple users attempt uploads at the same time it can have an effect on your site’s load time but it shouldn’t open you to security threats

      Reply
  26. Vinod says:
    Aug 11, 2019 at 11:45 am

    Thanks a lot!!! Method 3 worked for me

    Reply
    • WPBeginner Support says:
      Aug 12, 2019 at 10:23 am

      Glad our recommendation worked for you :)

      Reply
  27. Janice says:
    Aug 2, 2019 at 2:42 pm

    Nice article, but I tried adding your 3 lines of code to the functions.php file, but got an “unknown @ rule” error. What’s that all about?

    Reply
    • WPBeginner Support says:
      Aug 5, 2019 at 10:52 am

      It would depend on the entire error but it could have been a hiccup with how the code was inserted, you may want to take a look at our guide here: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/

      Reply
  28. Abduaziz says:
    Jun 23, 2019 at 12:57 pm

    Thanks a lot!!! Method 3 worked for me

    Reply
    • WPBeginner Support says:
      Jun 25, 2019 at 11:22 am

      Glad our recommendation could help :)

      Reply
  29. Alexander Gartley says:
    May 23, 2019 at 12:41 pm

    Thanks, this helped me troubleshoot an upload limit. I’m on a WordPress multisite network install, so it ended up being a setting in the Network Admin Settings.

    I was confused at first, because my php settings were allowing larger uploads, but it was restricted in the Network Settings.

    Reply
    • WPBeginner Support says:
      May 24, 2019 at 9:47 am

      Thanks for sharing what solved the problem for you :)

      Reply
  30. Ernesto says:
    Apr 1, 2019 at 7:10 pm

    Would have been great if you have included the .user.ini method.

    .user.ini uploaded in the root folder with the same value/text in your edited php.ini

    Most of the time, only this method works for shared hosting.

    ErnestPH

    Reply
    • WPBeginner Support says:
      Apr 2, 2019 at 11:07 am

      The php.ini file should work the same as the user.ini file unless your specific host ignores the php.ini but thank you for sharing your recommendation :)

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

      This is the only solution that works on my shared hosting server. Thanks Ernesto!

      Reply
  31. Tamir Davidoff says:
    Mar 27, 2019 at 1:19 am

    Not working for me.
    I have followed this guide and double checked the php.ini file to make sure that the changed are in fact saved. changed htaccess file to increase limits. and also tried modifying the phpMyAdmin httpd-app.conf and php-settings.conf file. All of these files reflect max upload higher than 40m and my WP site does not reflect Any of these changes. Really frustrated here.

    Please help me, thanks !

    Reply
    • WPBeginner Support says:
      Mar 27, 2019 at 11:29 am

      If you haven’t already, you would want to reach out to your hosting provider to ensure there is not a setting on their end that is overriding what you are setting :)

      Reply
  32. rajesh says:
    Mar 16, 2019 at 7:58 am

    i have tried all 3 method none of them worked. i am trying to upload newspaper theme in my in my wordpress site. but every time it show that php.ini file upload max file size.
    plz help me

    Reply
    • WPBeginner Support says:
      Mar 19, 2019 at 12:52 pm

      You would want to reach out to your hosting provider to ensure they don’t have a setting that is overriding the changes you made.

      Reply
  33. Adam Walsworth says:
    Feb 26, 2019 at 5:21 am

    Watchout for hidden php.ini files. In my setup I found 2 of them. The one which I found actually resolved the issue was found under

    ./etc/php/7.0/apache2/php.ini

    modifying this file fixed my issue.

    Reply
    • WPBeginner Support says:
      Feb 26, 2019 at 1:37 pm

      Thanks for sharing your solution, with where that file is located we would recommend most users reach out to their hosting provider before looking in locations like that.

      Reply
  34. Rafiq khan says:
    Feb 23, 2019 at 8:23 am

    Thanks buddy i have solved my problem by adopting method 2 by editing my php.ini file
    Thanks alot you are working great

    Reply
    • WPBeginner Support says:
      Feb 25, 2019 at 1:31 pm

      Glad our article could help :)

      Reply
  35. Carla says:
    Feb 1, 2019 at 11:10 pm

    None of the above worked for me. A matter of fact, editing the htaccess file broke my site even after deleting the above code. Overwriting with a new file fixed the problem though.

    I have a dedicated server on Bluehost. What worked for me was going in the WHM root, not cpanel nor FTP access. Search for MultiPHP INI Editor. Give it at least 5 minutes to load if you only see the title and icon. You can set you upload time, post size, etc. there. Works instantly, even if your site is using Cloudflare, without placing it in development mode or clearing the cache. I hope this helps someone.

    Reply
    • WPBeginner Support says:
      Feb 4, 2019 at 2:19 pm

      Thank you for sharing what worked for you, should other users be on a dedicated server, if they reach out and let BlueHost know the need to increase the upload size then BlueHost can normally edit that for them :)

      Reply
  36. Pezza says:
    Jan 31, 2019 at 5:27 am

    Great Stuff! .htaccess worked for me!

    Reply
    • WPBeginner Support says:
      Jan 31, 2019 at 11:37 am

      Thank you, glad our guide could help :)

      Reply
  37. ReineR says:
    Jan 28, 2019 at 11:55 am

    htaccess metod worked for me, thanks!

    Reply
    • WPBeginner Support says:
      Jan 28, 2019 at 3:14 pm

      Glad our article could help :)

      Reply
  38. Ahmed says:
    Jan 13, 2019 at 4:47 pm

    Work for me

    3. htaccess Method

    you need to click (show hidden files to view and edit this file).

    Reply
    • WPBeginner Support says:
      Jan 14, 2019 at 2:41 pm

      Glad our article could help :)

      Reply
  39. rahul says:
    Jan 13, 2019 at 9:21 am

    when i tried this
    Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.
    this happened to me
    whats the solution of this

    Reply
    • WPBeginner Support says:
      Jan 14, 2019 at 2:22 pm

      You would need to use FTP rather than WordPress itself to add the code: https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/

      Reply
  40. Ephraim says:
    Jan 5, 2019 at 3:44 am

    I had been trying php.ini method but it never works please how will I set it..
    Or you should please tell me the were to paste at function.php

    Reply
    • WPBeginner Support says:
      Jan 8, 2019 at 10:08 am

      You would normally use a text editor to set the content in the php.ini file. For your functions.php it should go at the end normally so it can be removed later as needed. You may also want to check with your hosting provider if you are having trouble with these methods for if they can assist in increasing the file size for you.

      Reply
  41. Ivos G. says:
    Dec 28, 2018 at 8:31 am

    None worked for me. But this one fixed it – add to your .htaccess this line:

    LimitRequestBody 104857600

    Reply
    • WPBeginner Support says:
      Dec 31, 2018 at 4:12 pm

      Thanks for sharing your solution for this issue :)

      Reply
  42. Achilleas says:
    Dec 21, 2018 at 12:12 am

    I am using Nginx and i had already setup properly the values for php in the php.ini but what fixed it was puting the same value in the server block with the variable client_max_body_size xxxM;

    I am writing this hoping it will help someone.

    Reply
    • Editorial Staff says:
      Dec 24, 2018 at 10:59 am

      Thank you for sharing this with us :)

      Reply
  43. RAHUL says:
    Dec 18, 2018 at 6:58 am

    That worked for me thanx

    Reply
    • WPBeginner Support says:
      Dec 19, 2018 at 11:25 am

      Glad our tutorial could help :)

      Reply
  44. Adriana Sabo says:
    Dec 14, 2018 at 10:22 am

    None of the options worked for me. Nothing happened when I tried the first two, and the last one prompted an error 500. Any way you can help?

    Reply
  45. Carl says:
    Nov 10, 2018 at 8:43 pm

    Very helpful, thank you!

    Reply
  46. Md. Rana says:
    Nov 3, 2018 at 1:21 pm

    The third option is worked for me. :)

    Reply
    • WPBeginner Support says:
      Nov 5, 2018 at 1:06 pm

      Hey Rana,

      Glad it worked out for you. Don’t forget to follow us on Facebook for more WordPress tips and tutorials.

      Reply
  47. Tom Allen says:
    Sep 25, 2018 at 4:18 pm

    The above explanation is fine for hosted sites, bit what about us guys that locahost? I still can figure out the “upload_max_filesize” error when downloading Updfaftplus from WP Plugins or from a download zip file. I am a beginner and need hand-holding through this process. Help is appreciated.

    Reply
  48. crystal says:
    Sep 19, 2018 at 5:57 pm

    hta access worked.
    you guys must put the code before #END WordPress
    if you put after #end wordpress then site goes to 500 internal server error in my experience with godaddy hosting

    Reply
    • Luis Felipe Lino says:
      Oct 10, 2018 at 1:43 pm

      Thanks.

      Reply
  49. Jaime Lopes says:
    Sep 12, 2018 at 4:16 am

    On most of the shared cPanel sites I’ve setup:

    -changing .htaccess brings the whole site down (500 internal error)
    -adding php.ini or php5.ini files does nothing
    -there is no option to choose ‘Site Software’ in cPanel…

    Reply
  50. Joseph says:
    Sep 11, 2018 at 4:56 am

    Thanks so much. The .htaccess file worked for me

    Reply
« 1 … 3 4 5

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
SeedProd Logo
SeedProd
Create beautiful custom landing pages - Drag & drop builder. 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 2021 (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 (2021)
    • 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 (2021)
    • SiteGround Reviews from 4464 Users & Our Experts (2021)
    • Bluehost Review from Real Users + Performance Stats (2021)
    • 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 2021 – Step by Step Guide
Deals & Coupons (view all)
ConvertKit Coupon Code
ConvertKit Coupon
Get a 14-day no risk FREE trial with this powerful email marketing software.
Bluehost Logo
Bluehost Coupon
Get over 69% off on Bluehost web hosting packages plus a free domain & free SSL certificate. Just $2.75/month.
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
  • Growth Fund
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • SeedProd
  • Nameboy
  • RafflePress
  • Smash Balloon
  • AIOSEO

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

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