不要将任何调试信息直接打印到页面中。WordPress提供wp-content/debug.log
您可以使用的文件。
在您的wp-config.php
define( \'WP_DEBUG\', true ); // turn debug mode on
define( \'WP_DEBUG_DISPLAY\', false ); // do not display errors
define( \'WP_DEBUG_LOG\', true ); // save errors to wp-content/debug.log
define( \'SAVEQUERIES\', true ); // save queries for debug
将此便捷功能添加到
functions.php
或插件文件
/**
* Simple debug trace to wp-content/debug.log
* @usage _log( $var );
*/
if ( ! function_exists( \'_log\' ) ) {
function _log( $log ) {
if ( true !== WP_DEBUG ) {
return;
}
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}
无论何时需要打印一些调试信息,都可以在代码中使用它
_log( $my_var );
打开
wp-content/debug.log
看到你的数据打印在那里。我通常将其作为固定文件保存在IDE(PHPStorm)中。