wp_php_error_args хук-фильтр . WP 5.2.0
Filters the arguments passed to {@see wp_die()} for the default PHP error template.
Использование
add_filter( 'wp_php_error_args', 'filter_function_name_9265', 10, 2 ); function filter_function_name_9265( $args, $error ){ // filter... return $args; }
- $args(массив)
- Associative array of arguments passed to wp_die(). By default these contain a 'response' key, and optionally 'link_url' and 'link_text' keys.
- $error(массив)
- Error information retrieved from error_get_last().
Список изменений
С версии 5.2.0 | Введена. |
Где вызывается хук
wp_php_error_args
wp-includes/class-wp-fatal-error-handler.php 223
$args = apply_filters( 'wp_php_error_args', $args, $error );