recovery_email_debug_info filter-hook . WP 5.3.0
Filters the debug information included in the fatal error protection email.
Usage
add_filter( 'recovery_email_debug_info', 'filter_function_name_7351' ); function filter_function_name_7351( $message ){ // filter... return $message; }
- $message(array)
- An associative array of debug information.
Changelog
Since 5.3.0 | Introduced. |
Where the hook is called
wp-includes/class-wp-recovery-mode-email-service.php 149
$debug = apply_filters( 'recovery_email_debug_info', $this->get_debug( $extension ) );