Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created November 16, 2016 03:42
Show Gist options
  • Save jpen365/ecfc6efa200ace421f13e006d9c63a18 to your computer and use it in GitHub Desktop.
Save jpen365/ecfc6efa200ace421f13e006d9c63a18 to your computer and use it in GitHub Desktop.
Update widget settings information with update()
<?php
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance[ 'title' ] = strip_tags( $new_instance[ 'title' ] );
return $instance;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment