首先,通过在您的wp-config.php 文件:
define( \'WP_DEBUG\', true );
之后,您还可以通过在
wp-config.php 文件:
define( \'WP_MAX_MEMORY_LIMIT\', \'256M\' );
有关编辑的详细信息
wp-config.php 文件/WordPress配置文件,请参阅:
https://codex.wordpress.org/Editing_wp-config.php有关调试的详细信息,请参阅以下和/或此链接:https://codex.wordpress.org/Debugging_in_WordPress
wp配置示例。php用于调试以下代码,插入到wp配置中。php文件,将所有错误、通知和警告记录到名为debug的文件中。登录wp内容目录。它还将显示错误。
// Enable WP_DEBUG mode
define( \'WP_DEBUG\', true );
// Enable Debug logging to the /wp-content/debug.log file
define( \'WP_DEBUG_LOG\', true );
// The SAVEQUERIES definition saves the database queries to an array and that array can be displayed to help analyze those queries.
define( \'SAVEQUERIES\', true );