wpseo_register_ajax_integrations()Yoast 1.0

Registers hooks for all AJAX integrations.

Хуков нет.

Возвращает

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

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

wpseo_register_ajax_integrations();

Код wpseo_register_ajax_integrations() Yoast 25.1

function wpseo_register_ajax_integrations() {
	$integrations = [ new Yoast_Network_Admin() ];

	foreach ( $integrations as $integration ) {
		$integration->register_ajax_hooks();
	}
}