我正在研究自定义的wordpress插件,我需要显示php错误。
// 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',1);
在上面尝试过,但仍然收到此消息:(
The site is experiencing technical difficulties. Please check your site admin email inbox for instructions.
没有错误
答案 0 :(得分:-1)
您可以通过将WP_DISABLE_FATAL_ERROR_HANDLER
设置为true
来禁用此行为:
define( 'WP_DISABLE_FATAL_ERROR_HANDLER', true );
这将阻止显示“该站点遇到技术难题”消息,因此将显示与添加此功能之前相同的错误。