wp_php_error_args filter-hook . WP 5.2.0
Filters the arguments passed to {@see wp_die()} for the default PHP error template.
Usage
add_filter( 'wp_php_error_args', 'filter_function_name_8187', 10, 2 ); function filter_function_name_8187( $args, $error ){ // filter... return $args; }
- $args(array)
- Associative array of arguments passed to wp_die(). By default these contain a 'response' key, and optionally 'link_url' and 'link_text' keys.
- $error(array)
- Error information retrieved from error_get_last().
Changelog
Since 5.2.0 | Introduced. |
Where the hook is called
wp_php_error_args
wp-includes/class-wp-fatal-error-handler.php 223
$args = apply_filters( 'wp_php_error_args', $args, $error );