Notice TraceLog
开发者 |
shuliakmaster
|
更新时间 |
2025年5月20日 01:32 |
PHP版本: |
5.0 及以上 |
WordPress版本: |
6.8 |
版权: |
GPLv2 or later |
版权网址: |
版权信息
|
详情介绍:
Notice TraceLog is a lightweight developer tool that displays PHP backtraces when Notices occur, helping you identify and fix issues caused by early execution or translation loading problems. Useful for debugging during plugin and theme development.
安装:
- Upload the plugin files to the
/wp-content/plugins/notice-trace-log
directory, or install the plugin through the WordPress plugins screen directly.
- Activate the plugin through the 'Plugins' menu in WordPress.
- Make sure
WP_DEBUG
and WP_DEBUG_DISPLAY
are enabled in your wp-config.php
.
Example configuration in
wp-config.php
:
define('WP_DEBUG', true); define('WP_DEBUG_DISPLAY', true);