WP_Widget::save_settings( array $settings )

Saves the settings for all instances of the widget class.


Parameters

$settings array Required
Multi-dimensional array of widget instance settings.

Top ↑

Source

File: wp-includes/class-wp-widget.php. View all references

public function save_settings( $settings ) {
	$settings['_multiwidget'] = 1;
	update_option( $this->option_name, $settings );
}


Top ↑

Changelog

Changelog
Version Description
2.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.