📜  调试 wordpress 错误 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:49.855000             🧑  作者: Mango

代码示例1
// 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', 0 );