W3cubDocs

/WordPress

wp_is_json_media_type( string $media_type ): bool

Checks whether a string is a valid JSON Media Type.

Parameters

$media_typestringrequired
A Media Type string to check.

Return

bool True if string is a valid JSON Media Type.

Source

function wp_is_json_media_type( $media_type ) {
	static $cache = array();

	if ( ! isset( $cache[ $media_type ] ) ) {
		$cache[ $media_type ] = (bool) preg_match( '/(^|\s|,)application\/([\w!#\$&-\^\.\+]+\+)?json(\+oembed)?($|\s|;|,)/i', $media_type );
	}

	return $cache[ $media_type ];
}

Changelog

Version Description
5.6.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_is_json_media_type