Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_exposed_cors_headers

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
296           $expose_headers = array( 'X-WP-Total', 'X-WP-TotalPages', 'Link' );
297
298           /**
299            * Filters the list of response headers that are exposed to REST API CORS requests.
300            *
301            * @since 5.5.0
302            *
303            * @param string[] $expose_headers The list of response headers to expose.
304            */
305           $expose_headers = apply_filters( 'rest_exposed_cors_headers', $expose_headers );
306
307           $this->send_header( 'Access-Control-Expose-Headers', implode( ', ', $expose_headers ) );
308
309           $allow_headers = array(
310                'Authorization',
311                'X-WP-Nonce',
312                'Content-Disposition',
313                'Content-MD5',
314                'Content-Type',