Skip to content

Instantly share code, notes, and snippets.

@saqibsarwar
Created September 5, 2022 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saqibsarwar/423cc509637bfe7f849c6da2ec837cd6 to your computer and use it in GitHub Desktop.
Save saqibsarwar/423cc509637bfe7f849c6da2ec837cd6 to your computer and use it in GitHub Desktop.
Disable PHP Warnings while using WP CLI
// Disable PHP warnings when running wp-cli
if ( ! defined( '$_SERVER["HTTP_HOST"]' ) ) {
define( 'WP_DEBUG', FALSE );
}
if ( ! defined( 'WP_DEBUG' ) ) {
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG_DISPLAY', false);
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment