'tpcrn_news_subs', 'description' => 'Subscribe to Feedburner Newsletter Widget'); /* Widget control settings. */ $control_ops = array('id_base' => 'tpcrn_news_subs-widget'); /* Create the widget. */ $this->WP_Widget('tpcrn_news_subs-widget', 'ThemePacific: NewsLetter Subscribe', $widget_ops, $control_ops); } /** * Display the widget */ function widget($args, $instance){ extract($args); /* Our Arguments in widget settings. */ $title = apply_filters('widget_title', $instance['title']); $feedb_url = $instance['feedb_url']; echo $before_widget; /* Display the widget title if it has*/ if($title) { echo $before_title.$title.$after_title; } ?>