Skip to content

Instantly share code, notes, and snippets.

@EnragedSuccubus
Created October 29, 2014 19:07
Show Gist options
  • Save EnragedSuccubus/eb1a5311ae9e301ddcb9 to your computer and use it in GitHub Desktop.
Save EnragedSuccubus/eb1a5311ae9e301ddcb9 to your computer and use it in GitHub Desktop.
WordPress Dev configurations
<?php
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* Add this above "That's all, stop editing! Happy blogging."
*/
// Enable debug mode http://codex.wordpress.org/Editing_wp-config.php#Debug
define( 'WP_DEBUG', true );
// Used to load development scripts instead of production versions
define( 'SCRIPT_DEBUG', true );
// Save queries for analysis http://codex.wordpress.org/Editing_wp-config.php#Save_queries_for_analysis
define( 'SAVEQUERIES', true );
// Enable Jetpack in local environments http://jetpack.me/support/development-mode/
if ( ! defined( 'JETPACK_DEV_DEBUG' ) ) {
define( 'JETPACK_DEV_DEBUG', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment