enable_wp_debug_mode_checks хук-фильтр . WP 4.6.0
Filters whether to allow the debug mode check to occur.
This filter runs before it can be used by plugins. It is designed for non-web run-times. Returning false causes the WP_DEBUG and related constants to not be checked and the default PHP values for errors will be used unless you take care to update them yourself.
Использование
add_filter( 'enable_wp_debug_mode_checks', 'filter_function_name_250' ); function filter_function_name_250( $enable_debug_mode ){ // filter... return $enable_debug_mode; }
- $enable_debug_mode(true/false)
- Whether to enable debug mode checks to occur.
По умолчанию: true
Список изменений
С версии 4.6.0 | Введена. |
Где вызывается хук
enable_wp_debug_mode_checks
wp-includes/load.php 424
if ( ! apply_filters( 'enable_wp_debug_mode_checks', true ) ) {