WP_REST_Request::is_json_content_type(): bool

Checks if the request has specified a JSON Content-Type.


Return

bool True if the Content-Type header is JSON.


Top ↑

Source

File: wp-includes/rest-api/class-wp-rest-request.php. View all references

public function is_json_content_type() {
	$content_type = $this->get_content_type();

	return isset( $content_type['value'] ) && wp_is_json_media_type( $content_type['value'] );
}


Top ↑

Changelog

Changelog
Version Description
5.6.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.