Skip to content

Instantly share code, notes, and snippets.

@saqibsarwar
Created September 5, 2022 15:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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