wp_oembed_register_route()WP 4.4.0

Registers the oEmbed REST API route.

Хуков нет.

Возвращает

null. Ничего (null).

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

wp_oembed_register_route();

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

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

Код wp_oembed_register_route() WP 6.5.2

function wp_oembed_register_route() {
	$controller = new WP_oEmbed_Controller();
	$controller->register_routes();
}