Tips
Common issue on shared hosting. Debug is unable to be deactivated due to host settings.
Solution:
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);
Read More
Particularly for use on the home page when design layouts do not include title text in the content area.
Read More