rest_prepare_comment хук-фильтрWP 4.7.0

Filters a comment returned from the REST API.

Allows modification of the comment right before it is returned.

Использование

add_filter( 'rest_prepare_comment', 'wp_kama_rest_prepare_comment_filter', 10, 3 );

/**
 * Function for `rest_prepare_comment` filter-hook.
 * 
 * @param WP_REST_Response $response The response object.
 * @param WP_Comment       $comment  The original comment object.
 * @param WP_REST_Request  $request  Request used to generate the response.
 *
 * @return WP_REST_Response
 */
function wp_kama_rest_prepare_comment_filter( $response, $comment, $request ){

	// filter...
	return $response;
}
$response(WP_REST_Response)
The response object.
$comment(WP_Comment)
The original comment object.
$request(WP_REST_Request)
Request used to generate the response.

Список изменений

С версии 4.7.0 Введена.

Где вызывается хук

WP_REST_Comments_Controller::prepare_item_for_response()
rest_prepare_comment
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php 1141
return apply_filters( 'rest_prepare_comment', $response, $comment, $request );

Где используется хук в WordPress

Использование не найдено.