mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Docs: Add more information about how to use filters that run before WordPress initialises.
Fixes #50134 git-svn-id: https://develop.svn.wordpress.org/trunk@49489 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -111,6 +111,27 @@ function wp_is_fatal_error_handler_enabled() {
|
||||
/**
|
||||
* Filters whether the fatal error handler is enabled.
|
||||
*
|
||||
* **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.
|
||||
*
|
||||
* @since 5.2.0
|
||||
*
|
||||
* @param bool $enabled True if the fatal error handler is enabled, false otherwise.
|
||||
|
||||
Reference in New Issue
Block a user