Summery Summery
Handles updating settings for the current Calendar widget instance.
Syntax Syntax
Parameters Parameters
- $new_instance
-
(Required) New settings for this instance as input by the user via WP_Widget::form().
- $old_instance
-
(Required) Old settings for this instance.
Return Return
(array) Updated settings to save.
Source Source
File: wp-includes/widgets/class-wp-widget-calendar.php
public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = sanitize_text_field( $new_instance['title'] ); return $instance; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |