WP_REST_Blocks_Controller::filter_response_by_context( array $data, string $context ): array

In this article

Filters a response based on the context defined in the schema.

Parameters

$dataarrayrequired
Response data to filter.
$contextstringrequired
Context defined in the schema.

Return

array Filtered response.

Source

public function filter_response_by_context( $data, $context ) {
	$data = parent::filter_response_by_context( $data, $context );

	/*
	 * Remove `title.rendered` and `content.rendered` from the response.
	 * It doesn't make sense for a pattern to have rendered content on its own,
	 * since rendering a block requires it to be inside a post or a page.
	 */
	unset( $data['title']['rendered'] );
	unset( $data['content']['rendered'] );

	// Add the core wp_pattern_sync_status meta as top level property to the response.
	$data['wp_pattern_sync_status'] = isset( $data['meta']['wp_pattern_sync_status'] ) ? $data['meta']['wp_pattern_sync_status'] : '';
	unset( $data['meta']['wp_pattern_sync_status'] );
	return $data;
}

Changelog

VersionDescription
6.3.0Adds the wp_pattern_sync_status postmeta property to the top level of response.
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.