Wordpress - WordPress Settings and Configuration
Given this snippet in
wp-config.php:
define('WP_DEBUG', true);
if (WP_DEBUG) {
error_reporting(E_ALL);
ini_set('display_errors', 1);
}
What will happen when you visit the WordPress site?