WC_REST_Posts_Controller::prepare_links()protectedWC 1.0

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() code WC 8.6.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;
}