redirection_request_headers_ignore

redirection_request_headers_ignore

Hook Type: filter

See hook in core

Displaying hooks found in version: redirection.5.5.0

apply_filters('redirection_request_headers_ignore') is found 1 times:

  • /models/request.php line 31
    	 *
    	 * @return array
    	 */
    	public static function get_request_headers() {
    		$ignore = apply_filters( 'redirection_request_headers_ignore', [
    			'cookie',
    			'host',
    		] );
    		$headers = [];
    
    		foreach ( $_SERVER as $name => $value ) {