BP_REST_Topics_Endpoint::get_item( WP_REST_Request $request )
Retrieve a single topic.
Description
Parameters
- $request
-
(Required) Full details about the request.
Return
(WP_REST_Response) | WP_Error
Source
File: bp-forums/classes/class-bp-rest-topics-endpoint.php
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 | public function get_item( $request ) { $topic = get_post( $request [ 'id' ] ); $retval = $this ->prepare_response_for_collection( $this ->prepare_item_for_response( $topic , $request ) ); $response = rest_ensure_response( $retval ); /** * Fires after a list of topic is fetched via the REST API. * * @param array $topic Fetched topic. * @param WP_REST_Response $response The response data. * @param WP_REST_Request $request The request sent to the API. * * @since 0.1.0 */ do_action( 'bp_rest_topic_get_item' , $topic , $response , $request ); return $response ; } |
Changelog
Version | Description |
---|---|
0.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.