WC_REST_Data_Controller::prepare_links()
Prepare links for the request.
Метод класса: WC_REST_Data_Controller{}
Хуков нет.
Возвращает
Массив
. Links for the given country.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_links( $item );
- $item(объект) (обязательный)
- Data object.
Код WC_REST_Data_Controller::prepare_links() WC REST Data Controller::prepare links WC 9.3.3
protected function prepare_links( $item ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $item->slug ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), ), ); return $links; }