WPSEO_Menu::load_page()publicYoast 1.0

Loads the requested admin settings page.

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

Хуков нет.

Возвращает

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

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

$WPSEO_Menu = new WPSEO_Menu();
$WPSEO_Menu->load_page();

Код WPSEO_Menu::load_page() Yoast 22.4

public function load_page() {
	// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
	if ( isset( $_GET['page'] ) && is_string( $_GET['page'] ) ) {
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information.
		$page = sanitize_text_field( wp_unslash( $_GET['page'] ) );
		$this->show_page( $page );
	}
}