BP_REST_Activity_Comment_Endpoint::prepare_activity_comments( array $comments, WP_REST_Request $request )

Prepare activity comments.

Description

Parameters

$comments

(array) (Required) Comments.

$request

(WP_REST_Request) (Required) Full details about the request.

Return

(array) An array of activity comments.

Source

File: bp-activity/classes/class-bp-rest-activity-comment-endpoint.php

	protected function prepare_activity_comments( $comments, $request ) {
		$data = array();

		if ( empty( $comments ) ) {
			return $data;
		}

		foreach ( $comments as $comment ) {
			$data[] = $this->activity_endpoint->prepare_response_for_collection(
				$this->activity_endpoint->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

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.