Skip to content

Instantly share code, notes, and snippets.

View mynamebilalkhan's full-sized avatar
🎯
Focusing

Muhammad Bilal Khan mynamebilalkhan

🎯
Focusing
View GitHub Profile
@mynamebilalkhan
mynamebilalkhan / wp-config.php
Created May 31, 2024 11:01
Put this into the wp-config.php file to log the errors in a file.
<?php
// Turn ON Error Logs
ini_set('display_errors','on');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
// Turn OFF Error Logs