WP_Widget_Block::update
Handles updating settings for the current Block widget instance.
Method of the class: WP_Widget_Block{}
No Hooks.
Returns
Array. Settings to save or bool false to cancel saving.
Usage
$WP_Widget_Block = new WP_Widget_Block(); $WP_Widget_Block->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 5.8.0 | Introduced. |
WP_Widget_Block::update() WP Widget Block::update code WP 7.0
public function update( $new_instance, $old_instance ) {
$instance = array_merge( $this->default_instance, $old_instance );
if ( current_user_can( 'unfiltered_html' ) ) {
$instance['content'] = $new_instance['content'];
} else {
$instance['content'] = wp_kses_post( $new_instance['content'] );
}
return $instance;
}