The Killer WordPress Checklist
Our “101+ Killer WordPress Checklist” will benefit all WordPress Designers, Developers and users, and save them from suffering through long, tiring hours of web surfing for the right WordPress guide. Here we go!
Quick Overview of what is covered:
Our ‘killer’ checklist is conveniently divided into 7 detailed checklists, each of which covers every aspect of launching, developing and then maintaining a WordPress website successfully.
All you have to do is follow each step carefully and we guarantee you’ll have the WordPress website of your dreams, ready within no time!
#2: WordPress Pre Development Checklist
#3: WordPress Development Checklist
#4: WordPress Launch Checklist
#6: WordPress Security Checklist
#7: WordPress Maintenance Checklist
#1. GETTING STARTED
We all know the importance of starting right.
If you understand the basics, right from the beginning of the process, the rest of the exercise becomes as smooth as silk.
So, make sure you make a perfect start by following these steps systematically to get the best end results.
Select Web Hosting:
Choose a suitable web host depending on your requirements.
Download WordPress from the official WordPress.org website
Download FileZilla the best FTP client.
Select an appropriate development environment and then install WordPress. You can choose either of these two options; Local service like XAMPP, or Host site on a test URL.
#2. WORDPRESS PRE DEVELOPMENT CHECKLIST
So, where do you actually start?
That’s the first question that’s probably popped in your head. This checklist is the answer to that very question.
Regardless of whether you are a beginner or a WordPress expert, this particular checklist will benefit anyone who is in the process of developing a new WordPress website.
Select a directory and install it under public_html. Do not use ‘root’ or ‘WordPress.’
Use random letters/numbers_table names instead of the default wp_table names. Checkout Change Table Prefix Plugin.
Refrain from using admin/admin as admin login/ password. Alternatively, you can follow these examples:
Make sure you hide your website from the search engines by checking the option under Settings > Reading “Discourage search engines from indexing this site”.
Once the installation is complete, here are some of the additional things you will need to do.
// To redirect from non www to www add this code to .htaccess in root. RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] // To redirect from www to non www add this code to .htaccess in root. RewriteEngine On RewriteCond %{HTTP_HOST} ^www\. (.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L]