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.
Return
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 9.8.2
protected function prepare_links() { $links = array( 'collection' => array( 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), ), ); return $links; }