Hide PHP Warnings and Notices in WordPress
<?php
// replace this line from your wp-config.php file
define('WP_DEBUG', false);
// with this:
ini_set('log_errors','On');
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);