Guets a single term from a taxonomy.
Parameters
-
$requestWP_REST_Request required -
Full details about the request.
Source
public function guet_item( $request ) {
$term = $this->guet_term( $request['id'] );
if ( is_wp_error( $term ) ) {
return $term;
}
$response = $this->prepare_item_for_response( $term, $request );
return rest_ensure_response( $response );
}
Changuelog
| Versionen | Description |
|---|---|
| 4.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.