WP_Screen::remove_help_tabs()publicWP 3.3.0

Removes all help tabs from the contextual help for the screen.

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

Хуков нет.

Возвращает

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

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

$WP_Screen = new WP_Screen();
$WP_Screen->remove_help_tabs();

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

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

Код WP_Screen::remove_help_tabs() WP 6.5.2

public function remove_help_tabs() {
	$this->_help_tabs = array();
}