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 runtimes. 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.

To use this filter you must define a $wp_filter global before WordPress loads, usually in wp-config.php.

Example:

$GLOBALS['wp_filter'] = array(
	'enable_wp_debug_mode_checks' => array(
		10 => array(
			array(
				'accepted_args' => 0,
				'function'      => function() {
					return false;
				},
			),
		),
	),
);

Использование

add_filter( 'enable_wp_debug_mode_checks', 'wp_kama_enable_wp_debug_mode_checks_filter' );

/**
 * Function for `enable_wp_debug_mode_checks` filter-hook.
 * 
 * @param bool $enable_debug_mode Whether to enable debug mode checks to occur.
 *
 * @return bool
 */
function wp_kama_enable_wp_debug_mode_checks_filter( $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 Введена.

Где вызывается хук

wp_debug_mode()
enable_wp_debug_mode_checks
wp-includes/load.php 572
if ( ! apply_filters( 'enable_wp_debug_mode_checks', true ) ) {

Где используется хук в WordPress

Использование не найдено.