WPSEO_Menu::load_page()
Loads the requested admin settings page.
Метод класса: WPSEO_Menu{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPSEO_Menu = new WPSEO_Menu(); $WPSEO_Menu->load_page();
Код WPSEO_Menu::load_page() WPSEO Menu::load page Yoast 21.6
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 ); } }