From f4addf3ff55fa805314ff9e91bfad101bb883626 Mon Sep 17 00:00:00 2001 From: Jonny Harris Date: Thu, 24 Feb 2022 22:34:56 +0000 Subject: [PATCH] REST API: Pass `WP_REST_Request` object to the rest_index filter. Props johnregan3, TimothyBlynJacobs, Spacedmonkey, hasanuzzamanshamim. Fixes #48638. git-svn-id: https://develop.svn.wordpress.org/trunk@52796 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/rest-api/class-wp-rest-server.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/rest-api/class-wp-rest-server.php b/src/wp-includes/rest-api/class-wp-rest-server.php index a14c20cfa4..056447f545 100644 --- a/src/wp-includes/rest-api/class-wp-rest-server.php +++ b/src/wp-includes/rest-api/class-wp-rest-server.php @@ -1239,10 +1239,12 @@ class WP_REST_Server { * available on the API, and a small amount of data about the site. * * @since 4.4.0 + * @since 6.0.0 Added `$request` parameter. * * @param WP_REST_Response $response Response data. + * @param WP_REST_Request $request Request data. */ - return apply_filters( 'rest_index', $response ); + return apply_filters( 'rest_index', $response, $request ); } /**