wp-config.confのWP_DEBUG
をtrue
に変更して以下を追加する。
wp-config.conf
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
}
あとは適当なphpファイルでerror_log()
を使って出力する。
functions.php
error_log('this is debug.');
wp-content以下にdebug.log
が出力されるので確認できる。
debug.log
[20-May-2020 00:00:00 UTC] this is debug.