';
?>
echo "" . $after_widget;
}
/** @see WP_Widget::update function that updates the widget */
function update($new_instance, $old_instance) {
$instance = $old_instance;
# you must list all the elements in the widget form here, this is how the $_POST variable is handled
$instance['twitter_username'] = strip_tags($new_instance['twitter_username']);
return $instance;
}
}
?>