'sydney_contact_info_widget', 'description' => __( 'Display your contact info', 'sydney') ); parent::__construct(false, $name = __('Sydney: Contact info', 'sydney'), $widget_ops); $this->alt_option_name = 'sydney_contact_info'; } function form($instance) { $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : ''; $address = isset( $instance['address'] ) ? esc_html( $instance['address'] ) : ''; $phone = isset( $instance['phone'] ) ? esc_html( $instance['phone'] ) : ''; $email = isset( $instance['email'] ) ? esc_html( $instance['email'] ) : ''; ?>

id; } extract($args); $title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : ''; $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); $address = isset( $instance['address'] ) ? esc_html( $instance['address'] ) : ''; $phone = isset( $instance['phone'] ) ? esc_html( $instance['phone'] ) : ''; $email = isset( $instance['email'] ) ? antispambot(esc_html( $instance['email'] )) : ''; echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; if( ($address) ) { echo '
'; echo '' . $address; echo '
'; } if( ($phone) ) { echo '
'; echo '' . $phone; echo '
'; } if( ($email) ) { echo '
'; echo '' . '' . $email . ''; echo '
'; } echo $after_widget; } }