'widget_about', 'description' => 'A widget that show about' ); /* Create the widget. */ parent::__construct( 'rst-about-widget', 'Agnilla - About', $widget_ops); } function widget($args, $instance) { $html = ''; $html .= $args['before_widget']; if( !empty($instance['title']) ) { $html .= $args['before_title']; $html .= $instance['title']; $html .= $args['after_title']; } $html .= '
'; $html .= $args['after_widget']; echo force_balance_tags($html); } function update($new_instance, $old_instance) { return $new_instance; } function form($instance) { ?>