wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_oembed_ensure_format › WordPress Function

Seit4.4.0
Veraltetn/v
wp_oembed_ensure_format ( $format )
Parameter:
  • (string) $format The oEmbed response format. Accepts 'json' or 'xml'.
    Erforderlich: Ja
Gibt zurück:
  • (string) The format, either 'xml' or 'json'. Default 'json'.
Definiert in:
Codex:

Ensures that the specified format is either 'json' or 'xml'.



Quellcode

function wp_oembed_ensure_format( $format ) {
	if ( ! in_array( $format, array( 'json', 'xml' ), true ) ) {
		return 'json';
	}

	return $format;
}