'artistdatapress-widget', 'description' => __('Display your ArtistData show feed in the sidebar', 'artistdatapress-widget') ); /* Widget settings. */ $this->WP_Widget( 'artistdatapress_widget', 'ArtistDataPress', $widget_ops ); /* Create the widget. */ } //End of artistdatapress_widget function function form( $instance ) { // Set up some default widget settings. $defaults = array( 'title' => 'ArtistDataPress', 'quantity' => '', ); $instance = wp_parse_args( (array) $instance, $defaults ); $title = esc_attr( $instance['title'] ); $quantity = $instance['quantity']; $showtime = $instance['showtime']; $showname = $instance['showname']; $showprice = $instance['showprice']; $showage = $instance['showage']; $showcountry = $instance['showcountry']; ?>

get_xml(); echo $before_widget; if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } ?>