WC_Settings_Payment_Gateways_React::hide_help_tabs()
Hide the help tabs.
Метод класса: WC_Settings_Payment_Gateways_React{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Settings_Payment_Gateways_React = new WC_Settings_Payment_Gateways_React(); $WC_Settings_Payment_Gateways_React->hide_help_tabs();
Код WC_Settings_Payment_Gateways_React::hide_help_tabs() WC Settings Payment Gateways React::hide help tabs WC 9.7.1
public function hide_help_tabs() { $screen = get_current_screen(); if ( ! $screen instanceof WP_Screen || 'woocommerce_page_wc-settings' !== $screen->id ) { return; } global $current_tab; if ( 'checkout' !== $current_tab ) { return; } $screen->remove_help_tabs(); }