WP_REST_Blocks_Controller::filter_response_by_context
Filters a response based on the context defined in the schema.
Метод класса: WP_REST_Blocks_Controller{}
Хуков нет.
Возвращает
array. Filtered response.
Использование
$WP_REST_Blocks_Controller = new WP_REST_Blocks_Controller(); $WP_REST_Blocks_Controller->filter_response_by_context( $data, $context );
- $data(массив) (обязательный)
- Response data to filter.
- $context(строка) (обязательный)
- Context defined in the schema.
Список изменений
| С версии 5.0.0 | Введена. |
| С версии 6.3.0 | Adds the wp_pattern_sync_status postmeta property to the top level of response. |
Код WP_REST_Blocks_Controller::filter_response_by_context() WP REST Blocks Controller::filter response by context WP 7.1
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'] = $data['meta']['wp_pattern_sync_status'] ?? '';
unset( $data['meta']['wp_pattern_sync_status'] );
return $data;
}