WP_REST_Themes_Controller::get_item() WordPress Method
The WP_REST_Themes_Controller::get_item() method is used to get a single theme. This is done by specifying the theme slug in the request. The theme object is then returned as a JSON object.
WP_REST_Themes_Controller::get_item( WP_REST_Request $request ) #
Retrieves a single theme.
Parameters
- $request
(WP_REST_Request)(Required)Full details about the request.
Return
(WP_REST_Response|WP_Error) Response object on success, or WP_Error object on failure.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php
public function get_item( $request ) {
$wp_theme = wp_get_theme( $request['stylesheet'] );
if ( ! $wp_theme->exists() ) {
return new WP_Error(
'rest_theme_not_found',
__( 'Theme not found.' ),
array( 'status' => 404 )
);
}
$data = $this->prepare_item_for_response( $wp_theme, $request );
return rest_ensure_response( $data );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.7.0 | Introduced. |