WP_REST_Request::is_json_content_type(): bool

In this article

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

Return

bool True if the Content-Type header is JSON.

Source

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'] );
}

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

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