developer
-
A couple of WordPress tricks for plugin developers
—
by
A couple of little tricks plugin developers should use when creating a WordPress plugin are: 1. Always have debugging on In wp-config.php you need to look for the line – define(‘WP_DEBUG’, false); Change this to – define(‘WP_DEBUG’, true); This will show any errors within database queries, and errors that you may come across as by…
