WP_Screen::remove_help_tab()publicWP 3.3.0

Removes a help tab from the contextual help for the screen.

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

Хуков нет.

Возвращает

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

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

$WP_Screen = new WP_Screen();
$WP_Screen->remove_help_tab( $id );
$id(строка) (обязательный)
The help tab ID.

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

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

Код WP_Screen::remove_help_tab() WP 6.5.2

public function remove_help_tab( $id ) {
	unset( $this->_help_tabs[ $id ] );
}