WC_Settings_Page::output()publicWC 1.0

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 8.7.0

public function output() {
	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 );
}