Created
October 29, 2014 19:07
-
-
Save NicoleGeissinger/eb1a5311ae9e301ddcb9 to your computer and use it in GitHub Desktop.
WordPress Dev configurations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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