How to Disable WP Optimize From Creating “wpo_update_plugin_json”
Unbeknownst to me until recently, the WordPress plugin "WP Optimize" creates a file called "wpo-plugins-tables-list.json," which lives in your public...
How to Optimize Images for SEO
The three plugins listed below allow you to optimize your image names for SEO (Media File Renamer Pro), as well as source your alt -text from your WordPress...
How to Publish a WordPress Plugin Using Subversion (SVN)
Instructions on How to Use SVN
https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/
Browse the WordPress.org Repository
http://plugins.svn.wordpress.org/<plugin-name>/...
How to Preload Images in WordPress
This article on preloading images in WordPress is amazing and details with code exactly how to do it.
...
How to Manually Change Your WordPress URL Using MySQL
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE...
How to Change the WordPress Site URL Within MySQL
The WordPress table that houses your site's URL is wp_options.
The wp_options table schema is 4 columns:
option_idoption_nameoption_valueautoload
There...
How to Reset a WordPress User’s Password From Within MySQL
The WordPress table that stores user passwords is "wp_users" and it has the following 10 fields:
IDuser_loginuser_passuser_nicenameuser_emailuser_urluser_registereduser_activation_keyuser_statusdisplay_name
The...
Disqus Configuration Variables on WordPress Using Ad Inserter
The question is, how do you install Disqus on WordPress without installing the Disqus plugin?
Here's how I do it.
If you aren't using "Ad Inserter",...