block_core_navigation_insert_hooked_blocks_into_rest_response()
Hooks into the REST API response for the core/navigation block and adds the first and last inner blocks.
Hooks from the function
Return
WP_REST_Response
. The response object.
Usage
block_core_navigation_insert_hooked_blocks_into_rest_response( $response, $post );
- $response(WP_REST_Response) (required)
- The response object.
- $post(WP_Post) (required)
- Post object.
Changelog
Since 6.5.0 | Introduced. |
block_core_navigation_insert_hooked_blocks_into_rest_response() block core navigation insert hooked blocks into rest response code WP 6.7.1
function block_core_navigation_insert_hooked_blocks_into_rest_response( $response, $post ) { if ( ! isset( $response->data['content']['raw'] ) || ! isset( $response->data['content']['rendered'] ) ) { return $response; } $parsed_blocks = parse_blocks( $response->data['content']['raw'] ); $content = block_core_navigation_insert_hooked_blocks( $parsed_blocks, $post ); // Remove mock Navigation block wrapper. $content = block_core_navigation_remove_serialized_parent_block( $content ); $response->data['content']['raw'] = $content; /** This filter is documented in wp-includes/post-template.php */ $response->data['content']['rendered'] = apply_filters( 'the_content', $content ); return $response; }