WC_Widget_Layered_Nav::form()publicWC 1.0

Outputs the settings update form.

Method of the class: WC_Widget_Layered_Nav{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Widget_Layered_Nav = new WC_Widget_Layered_Nav();
$WC_Widget_Layered_Nav->form( $instance );
$instance(array) (required)
Instance.

Notes

  • See: WP_Widget->form

WC_Widget_Layered_Nav::form() code WC 8.7.0

public function form( $instance ) {
	$this->init_settings();
	parent::form( $instance );
}