wp_php_error_args filter-hookWP 5.2.0

Filters the arguments passed to wp_die() for the default PHP error template.

Usage

add_filter( 'wp_php_error_args', 'wp_kama_php_error_args_filter', 10, 2 );

/**
 * Function for `wp_php_error_args` filter-hook.
 * 
 * @param array $args  Associative array of arguments passed to `wp_die()`. By default these contain a 'response' key, and optionally 'link_url' and 'link_text' keys.
 * @param array $error Error information retrieved from `error_get_last()`.
 *
 * @return array
 */
function wp_kama_php_error_args_filter( $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_Fatal_Error_Handler::display_default_error_template()
wp_php_error_args
wp-includes/class-wp-fatal-error-handler.php 229
$args = apply_filters( 'wp_php_error_args', $args, $error );

Where the hook is used in WordPress

Usage not found.