rest_exposed_cors_headers хук-фильтр . WP 5.5.0
Filters the list of response headers that are exposed to CORS requests.
Использование
add_filter( 'rest_exposed_cors_headers', 'filter_function_name_4320' ); function filter_function_name_4320( $expose_headers ){ // filter... return $expose_headers; }
- $expose_headers(строка[])
- The list of headers to expose.
Список изменений
С версии 5.5.0 | Введена. |
Где вызывается хук
rest_exposed_cors_headers
wp-includes/rest-api/class-wp-rest-server.php 319
$expose_headers = apply_filters( 'rest_exposed_cors_headers', $expose_headers );