enable_wp_debug_mode_checks filter-hookWP-CLI 4.6.0

This is a WordPress - enable_wp_debug_mode_checks hook. The plugin just uses it.

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.

Usage

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.
Default: true

Changelog

Since 4.6.0 Introduced.

Where the hook is called

In file: /php/wp-settings-cli.php
enable_wp_debug_mode_checks
wp-cli/php/wp-settings-cli.php 101
if ( apply_filters( 'enable_wp_debug_mode_checks', true ) ) {

Where the hook is used in WP CLI

Usage not found.