WC_Settings_Page::save()publicWC 1.0

Save settings and trigger the 'woocommerce_update_options_'.id action.

Method of the class: WC_Settings_Page{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Settings_Page = new WC_Settings_Page();
$WC_Settings_Page->save();

WC_Settings_Page::save() code WC 8.7.0

public function save() {
	$this->save_settings_for_current_section();
	$this->do_update_options_action();
}