WP_Screen::remove_help_tab()
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 Screen::remove help tab WP 6.7.2
public function remove_help_tab( $id ) { unset( $this->_help_tabs[ $id ] ); }