BP_REST_Forums_Endpoint::get_item( WP_REST_Request $request )
Retrieve a single Forum.
Description
Parameters
- $request
-
(Required) Full details about the request.
Return
(WP_REST_Response) | WP_Error
Source
File: bp-forums/classes/class-bp-rest-forums-endpoint.php
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | public function get_item( $request ) { $forum = get_post( $request [ 'id' ] ); $retval = $this ->prepare_response_for_collection( $this ->prepare_item_for_response( $forum , $request ) ); $response = rest_ensure_response( $retval ); /** * Fires after a list of forums is fetched via the REST API. * * @param array $forum Fetched forum. * @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_forum_get_item' , $forum , $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.