Answers for "debug false wp show errors"

PHP
6

debug wordpress errors

// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );

// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );

// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
Posted by: Guest on June-07-2020
1

wordpress debug true

// Add this to wp-config.php
// This enables debugging.
define( 'WP_DEBUG', true ); //set false to disable
Posted by: Guest on March-27-2021

Browse Popular Code Answers by Language