The-Resource-List

WordPress Developer Resources

Sharing is caring!

Here are various WordPress developer resources that I find useful. Let me know of other resources I should add to the list.

The WordPress Codex – “the online manual for WordPress and a living repository for WordPress information and documentation.”

GenerateWP.com – “Delightful tools for WordPress Developers”

wpturbo.dev – (A new site) Contains code snippets and generators.

WP-Hasty.com – “Speed up and improve your WordPress development with Hasty”

Awesome WP Developer Tools – Compiled by Luke, located at Github.

AsphaltThemes.com – “37 Free WordPress Developer Resources For Advance WordPress Users”

DesignYourWay.net – “WordPress boilerplates to use for your themes and plugins”

SmashingMagazine.com – “A Detailed Guide To A Custom WordPress Page Templates”

LocalSync.io – “Clone your [Local ⇋ Live] sites instantly”

Whois tools (should likely be added to another list)

Digital.com – “WHOIS Tool: Find The Owner Of Any Domain Name in Seconds.”

HostAdvice.com – “Find out Who is hosting any website.”

MXToolbox – Check email health along with other tools.

philowen.com – Add New Admin User in WordPress from PHP MyAdmin.

INSERT INTO 'database_name'.'wp_users' ('ID', 'user_login', 'user_pass', 'user_nicename', 'user_email', 'user_url', 'user_registered', 'user_activation_key', 'user_status', 'display_name') VALUES ('4', 'demo', MD5('demo'), 'Your Name', '', 'http://www.test.com/', '2011-06-07 00:00:00', '', '0', 'Your Name');

INSERT INTO 'database_name'.'wp_usermeta' ('umeta_id', 'user_id', 'meta_key', 'meta_value') VALUES (NULL, '4', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');

INSERT INTO 'database_name'.'wp_usermeta' ('umeta_id', 'user_id', 'meta_key', 'meta_value') VALUES (NULL, '4', 'wp_user_level', '10');

For more details check out:
GreenGeeks.com – “How to Use phpMyAdmin to Add an Admin User to the WordPress Database”
TipsandTricks-hq.com – “Create a WordPress Admin User for A WordPress Site via MySQL (PHPMyAdmin)”

WPBeginner.com – Create a simple 404.php file to redirect to front page.

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo('url'));
exit();
?>

Place the file into your child theme root folder. Test it out by going to the domain name and /thensomething. If it is not an actual page or post it will redirect to the front page.


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *