开发者 | andrewklimek |
---|---|
更新时间 | 2016年5月3日 02:51 |
捐献地址: | 去捐款 |
PHP版本: | 2.6.0 及以上 |
WordPress版本: | 4.5 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
define( 'WP_DEBUG', true );// just toggle this line to false to turn off if ( WP_DEBUG ) { define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); }
add_filter( 'debug_log_latest_count', function(){ return 20; } );
Same as above but use 0... or be fancy:
add_filter( 'debug_log_latest_count', '__return_false' );
Same deal. The number here is megabytes.
add_filter( 'debug_log_too_big', function(){ return 2; } );
add_filter( 'debug_log_too_big', '__return_false' );