WC_REST_Posts_Controller::prepare_links()
Prepare links for the request.
Method of the class: WC_REST_Posts_Controller{}
No Hooks.
Return
Array
. Links for the given post.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links( $post, $request );
- $post(WP_Post) (required)
- Post object.
- $request(WP_REST_Request) (required)
- Request object.
WC_REST_Posts_Controller::prepare_links() WC REST Posts Controller::prepare links code WC 9.3.1
protected function prepare_links( $post, $request ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $post->ID ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), ), ); return $links; }