BP_REST_Activity_Endpoint::prepare_activity_comments( array $comments, WP_REST_Request $request )
Prepare activity comments.
Description
Parameters
- $comments
-
(Required) Comments.
- $request
-
(Required) Full details about the request.
Return
(array) An array of activity comments.
Source
File: bp-activity/classes/class-bp-rest-activity-endpoint.php
protected function prepare_activity_comments( $comments, $request ) { $data = array(); if ( empty( $comments ) ) { return $data; } foreach ( $comments as $comment ) { $data[] = $this->prepare_response_for_collection( $this->prepare_item_for_response( $comment, $request ) ); } /** * Filter activity comments returned from the API. * * @param array $data An array of activity comments. * @param array $comments Comments. * @param WP_REST_Request $request Request used to generate the response. * * @since 0.1.0 */ return apply_filters( 'bp_rest_activity_prepare_comments', $data, $comments, $request ); }
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.