woocommerce_hydration_request_after_callbacks

woocommerce_hydration_request_after_callbacks

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.3.1

apply_filters('woocommerce_hydration_request_after_callbacks') is found 1 times:

  • /src/Blocks/Domain/Services/Hydration.php line 169
    		 *                                                                   Usually a WP_REST_Response or WP_Error.
    		 * @param array                                            $handler  Route handler used for the request.
    		 * @param WP_REST_Request                                  $request  Request used to generate the response.
    		 */
    		$response = apply_filters( 'woocommerce_hydration_request_after_callbacks', $response, $handler, $request );
    
    		return $response;
    	}
    
    	/**
    	 * Inspired from WP core's `match_request_to_handler`, this matches a given path from available route regexes.