__( 'Show your contact information.', 'allcom' ), ) // Args ); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ) { extract( $args ); $alignment = apply_filters('widget_alignment', $instance['alignment']); $color = apply_filters('widget_color', $instance['color']); $direction = apply_filters('widget_direction', $instance['direction']); $email = apply_filters('widget_email', $instance['email']); $fax = apply_filters('widget_fax', $instance['fax']); $hours = apply_filters('widget_hours', $instance['hours']); $location = apply_filters('widget_location', $instance['location']); $mobile = apply_filters('widget_mobile', $instance['mobile']); $name = apply_filters('widget_name', $instance['name']); $phone = apply_filters('widget_phone', $instance['phone']); $slogan = apply_filters('widget_slogan', $instance['slogan']); $title = apply_filters('widget_title', $instance['title']); echo $before_widget; if ( ! empty( $title ) ) echo $before_title . $title . $after_title; ?>