diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
index 2c9bf40..19c29bc 100644
a
|
b
|
class WP_REST_Posts_Controller extends WP_REST_Controller { |
251 | 251 | 'search' => 's', |
252 | 252 | 'slug' => 'post_name__in', |
253 | 253 | 'status' => 'post_status', |
| 254 | 'exact_search' => 'exact', |
254 | 255 | ); |
255 | 256 | |
256 | 257 | /* |
… |
… |
class WP_REST_Posts_Controller extends WP_REST_Controller { |
2833 | 2834 | 'type' => 'integer', |
2834 | 2835 | ); |
2835 | 2836 | } |
| 2837 | |
| 2838 | $query_params['exact_search'] = array( |
| 2839 | 'description' => __( 'Use exact search instead of full search.' ), |
| 2840 | 'type' => 'boolean', |
| 2841 | ); |
2836 | 2842 | |
2837 | 2843 | $query_params['offset'] = array( |
2838 | 2844 | 'description' => __( 'Offset the result set by a specific number of items.' ), |