wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_is_json_media_type › WordPress Function

Depuis5.6.0
Dépréciéen/a
wp_is_json_media_type ( $media_type )
Paramètres:
  • (string) $media_type A Media Type string to check.
    Requis: Oui
Retourne:
  • (bool) True if string is a valid JSON Media Type.
Défini(e) dans:
Codex:

Checks whether a 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 ];
}