rest_exposed_cors_headers filter-hook . WP 5.5.0
Filters the list of response headers that are exposed to CORS requests.
Usage
add_filter( 'rest_exposed_cors_headers', 'filter_function_name_2789' ); function filter_function_name_2789( $expose_headers ){ // filter... return $expose_headers; }
- $expose_headers(string[])
- The list of headers to expose.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
rest_exposed_cors_headers
wp-includes/rest-api/class-wp-rest-server.php 319
$expose_headers = apply_filters( 'rest_exposed_cors_headers', $expose_headers );