WC_Settings_API::admin_options()publicWC 1.0

Output the admin options table.

Method of the class: WC_Settings_API{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Settings_API = new WC_Settings_API();
$WC_Settings_API->admin_options();

WC_Settings_API::admin_options() code WC 8.6.1

public function admin_options() {
	echo '<table class="form-table">' . $this->generate_settings_html( $this->get_form_fields(), false ) . '</table>'; // WPCS: XSS ok.
}