WP_REST_Themes_Controller::_sanitize_stylesheet_callback( string $stylesheet )
Sanitize the stylesheet to decode endpoint.
Parameters
- $stylesheet
-
(Required) The stylesheet name.
Return
(string) Sanitized stylesheet.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php
public function _sanitize_stylesheet_callback( $stylesheet ) {
return urldecode( $stylesheet );
}
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |