WC_REST_Product_Variations_V2_Controller::prepare_objects_query
Prepare objects query.
Method of the class: WC_REST_Product_Variations_V2_Controller{}
No Hooks.
Returns
Array.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_objects_query( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
| Since 3.0.0 | Introduced. |
WC_REST_Product_Variations_V2_Controller::prepare_objects_query() WC REST Product Variations V2 Controller::prepare objects query code WC 10.3.6
protected function prepare_objects_query( $request ) {
$args = parent::prepare_objects_query( $request );
$args['post_parent'] = $request['product_id'];
return $args;
}