WC_Settings_Page::output
Output the HTML for the settings.
Метод класса: WC_Settings_Page{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WC_Settings_Page = new WC_Settings_Page(); $WC_Settings_Page->output();
Код WC_Settings_Page::output() WC Settings Page::output WC 10.7.0
public function output() {
$this->output_called = true;
if ( Features::is_enabled( 'settings' ) ) {
return;
}
global $current_section;
// We can't use "get_settings_for_section" here
// for compatibility with derived classes overriding "get_settings".
$settings = $this->get_settings( $current_section );
WC_Admin_Settings::output_fields( $settings );
}