WC_REST_Products_V1_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Products_V1_Controller{}
No Hooks.
Return
Array
. Links for the given product.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $product, $request );
- $product(WC_Product) (required)
- Product object.
- $request(WP_REST_Request) (required)
- Request object.
WC_REST_Products_V1_Controller::prepare_links() WC REST Products V1 Controller::prepare links code WC 9.8.1
protected function prepare_links( $product, $request ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $product->get_id() ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), ), ); if ( $product->get_parent_id() ) { $links['up'] = array( 'href' => rest_url( sprintf( '/%s/products/%d', $this->namespace, $product->get_parent_id() ) ), ); } return $links; }