Skip to content

Instantly share code, notes, and snippets.

@marushu
Created February 28, 2016 02:55
Show Gist options
  • Save marushu/e98359db9fcf5e3279d8 to your computer and use it in GitHub Desktop.
Save marushu/e98359db9fcf5e3279d8 to your computer and use it in GitHub Desktop.
wp-config.phpへ追加するヤツ
<?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.
*/
define('WP_DEBUG', false);
//define('WP_DEBUG', true);
//define('SAVEQUERIES', true);
//define('WP_DEBUG_DISPLAY', false);
// if not existence page redirect to
define( 'NOBLOGREDIRECT', 'url here' );
// For admin panel
define('WP_MAX_MEMORY_LIMIT', '512M');
// stop add plugin at admin panel and no edit
define('DISALLOW_FILE_MODS',true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment