wp_oembed_ensure_format()WP 4.4.0

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

Хуков нет.

Возвращает

Строку. The format, either 'xml' or 'json'.

Использование

wp_oembed_ensure_format( $format );
$format(строка) (обязательный)
The oEmbed response format. Accepts 'json' or 'xml'.

Список изменений

С версии 4.4.0 Введена.

Код wp_oembed_ensure_format() WP 6.5.2

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

	return $format;
}