WP_Widget_Archives::update()
Handles updating settings for the current Archives widget instance.
Method of the class: WP_Widget_Archives{}
No Hooks.
Return
Array
. Updated settings to save.
Usage
$WP_Widget_Archives = new WP_Widget_Archives(); $WP_Widget_Archives->update( $new_instance, $old_instance );
- $new_instance(array) (required)
- New settings for this instance as input by the user via WP_Widget_Archives::form().
- $old_instance(array) (required)
- Old settings for this instance.
Changelog
Since 2.8.0 | Introduced. |
WP_Widget_Archives::update() WP Widget Archives::update code WP 6.7.1
public function update( $new_instance, $old_instance ) { $instance = $old_instance; $new_instance = wp_parse_args( (array) $new_instance, array( 'title' => '', 'count' => 0, 'dropdown' => '', ) ); $instance['title'] = sanitize_text_field( $new_instance['title'] ); $instance['count'] = $new_instance['count'] ? 1 : 0; $instance['dropdown'] = $new_instance['dropdown'] ? 1 : 0; return $instance; }