On this page
apply_filters( 'wp_fatal_error_handler_enabled', bool $enabled )
Filters whether the fatal error handler is enabled.
Description
Important: This filter runs before it can be used by plugins. It cannot be used by plugins, mu-plugins, or themes. To use this filter you must define a $wp_filter global before WordPress loads, usually in wp-config.php.
Example:
$GLOBALS['wp_filter'] = array(
'wp_fatal_error_handler_enabled' => array(
10 => array(
array(
'accepted_args' => 0,
'function' => function() {
return false;
},
),
),
),
);
Alternatively you can use the WP_DISABLE_FATAL_ERROR_HANDLER constant.
Parameters
$enabledbool-
True if the fatal error handler is enabled, false otherwise.
Source
File: wp-includes/error-protection.php. View all references
return apply_filters( 'wp_fatal_error_handler_enabled', $enabled );
Related
Used By
| Used By | Description |
|---|---|
| wp_is_fatal_error_handler_enabled() wp-includes/error-protection.php | Checks whether the fatal error handler is enabled. |
Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_fatal_error_handler_enabled