WP_Widget_Custom_HTML::update
Handles updating settings for the current Custom HTML widget instance.
Method of the class: WP_Widget_Custom_HTML{}
No Hooks.
Returns
Array. Settings to save or bool false to cancel saving.
Usage
$WP_Widget_Custom_HTML = new WP_Widget_Custom_HTML(); $WP_Widget_Custom_HTML->update( $new_instance, $old_instance );
- $new_instance(array) (required)
- New settings for this instance as input by the user via WP_Widget::form().
- $old_instance(array) (required)
- Old settings for this instance.
Changelog
| Since 4.8.1 | Introduced. |
WP_Widget_Custom_HTML::update() WP Widget Custom HTML::update code WP 7.0
public function update( $new_instance, $old_instance ) {
$instance = array_merge( $this->default_instance, $old_instance );
$instance['title'] = sanitize_text_field( $new_instance['title'] );
if ( current_user_can( 'unfiltered_html' ) ) {
$instance['content'] = $new_instance['content'];
} else {
$instance['content'] = wp_kses_post( $new_instance['content'] );
}
return $instance;
}