WPSEO_MyYoast_Proxy::handle_proxy_page()publicYoast 1.0

Renders the requested proxy page and exits to prevent the WordPress UI from loading.

Метод класса: WPSEO_MyYoast_Proxy{}

Хуков нет.

Возвращает

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

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

$WPSEO_MyYoast_Proxy = new WPSEO_MyYoast_Proxy();
$WPSEO_MyYoast_Proxy->handle_proxy_page();

Код WPSEO_MyYoast_Proxy::handle_proxy_page() Yoast 22.4

public function handle_proxy_page() {
	$this->render_proxy_page();

	// Prevent the WordPress UI from loading.
	exit;
}