WC_Settings_Page::output
Output the HTML for the settings.
Method of the class: WC_Settings_Page{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Settings_Page = new WC_Settings_Page(); $WC_Settings_Page->output();
WC_Settings_Page::output() WC Settings Page::output code WC 10.6.2
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 );
}