Summery Summery
Outputs the settings form for the Recent Posts widget.
Syntax Syntax
Parameters Parameters
- $instance
-
(Required) Current settings.
Source Source
File: wp-includes/widgets/class-wp-widget-recent-posts.php
* * @param array $new_instance New settings for this instance as input by the user via * WP_Widget::form(). * @param array $old_instance Old settings for this instance. * @return array Updated settings to save. */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = sanitize_text_field( $new_instance['title'] ); $instance['number'] = (int) $new_instance['number']; $instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false; return $instance; } /**
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |