wp_oembed_ensure_format()
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 oembed ensure format WP 6.6.2
function wp_oembed_ensure_format( $format ) { if ( ! in_array( $format, array( 'json', 'xml' ), true ) ) { return 'json'; } return $format; }