WP_REST_Templates_Controller::get_template_fallback( WP_REST_Request $request ): WP_REST_Response|WP_Error
Returns the fallback template for the given slug.
Parameters
-
$request
WP_REST_Request Required -
The request instance.
Return
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php
.
View all references
public function get_template_fallback( $request ) {
$hierarchy = get_template_hierarchy( $request['slug'], $request['is_custom'], $request['template_prefix'] );
do {
$fallback_template = resolve_block_template( $request['slug'], $hierarchy, '' );
array_shift( $hierarchy );
} while ( ! empty( $hierarchy ) && empty( $fallback_template->content ) );
$response = $this->prepare_item_for_response( $fallback_template, $request );
return rest_ensure_response( $response );
}
Changelog
Version | Description |
---|---|
6.3.0 | Ignore empty templates. |
6.1.0 | Introduced. |