📜  显示 wordpress 错误 - 任何代码示例

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

代码示例1
/* provided by joshiyogesh0333@gmail.com */
/* add in config file  */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', true );

/* add in function.php file  */

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);