WC_REST_Tax_Classes_V1_Controller::prepare_links
Prepare links for the request.
Method of the class: WC_REST_Tax_Classes_V1_Controller{}
No Hooks.
Returns
Array. Links for the given tax class.
Usage
// protected - for code of main (parent) or child class $result = $this->prepare_links();
WC_REST_Tax_Classes_V1_Controller::prepare_links() WC REST Tax Classes V1 Controller::prepare links code WC 10.7.0
protected function prepare_links() {
$links = array(
'collection' => array(
'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
),
);
return $links;
}