xdebug(编写优秀源代码并查看WordPress提示的最佳方法,可能是不推荐使用的函数)以及WordPress的可能性,如常量WP-DEBUG
/** Debugging WP */
define(\'WP_DEBUG\', true); //enable the reporting of notices during development - E_ALL
define(\'WP_DEBUG_DISPLAY\', true); //use the globally configured setting for display_errors and not force errors to be displayed
define(\'WP_DEBUG_LOG\', true); //error logging to wp-content/debug.log
define(\'SCRIPT_DEBUG\', true); //loads the development (non-minified) versions of all scripts and CSS and disables compression and concatenation,
//define(\'E_DEPRECATED\', true); //E_ALL & ~E_DEPRECATED & ~E_STRICT
有关我的工具箱的更多信息
this post , 但目前我使用PhpStorm作为IDE,也使用GitHub作为存储库。
在WordPress内部,我使用插件Debug Objects 用于调试内容中的大量作业。