'bldr_contact_info_widget', 'description' => __( 'Display your contact info', 'bldr') ); parent::__construct(false, $name = __('MT: Contact Info Widget', 'bldr'), $widget_ops); $this->alt_option_name = 'bldr_contact_info'; add_action( 'save_post', array($this, 'flush_widget_cache') ); add_action( 'deleted_post', array($this, 'flush_widget_cache') ); add_action( 'switch_theme', array($this, 'flush_widget_cache') ); } // widget form creation function form($instance) { // Check values $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : ''; $address = isset( $instance['address'] ) ? wp_kses_post( $instance['address'] ) : ''; $phone = isset( $instance['phone'] ) ? wp_kses_post( $instance['phone'] ) : ''; $email = isset( $instance['email'] ) ? sanitize_email( $instance['email'] ) : ''; ?>
flush_widget_cache(); $alloptions = wp_cache_get( 'alloptions', 'options' ); if ( isset($alloptions['bldr_contact_info']) ) delete_option('bldr_contact_info'); return $instance; } function flush_widget_cache() { wp_cache_delete('bldr_contact_info', 'widget'); } // display widget function widget($args, $instance) { $cache = array(); if ( ! $this->is_preview() ) { $cache = wp_cache_get( 'bldr_contact_info', 'widget' ); } if ( ! is_array( $cache ) ) { $cache = array(); } if ( ! isset( $args['widget_id'] ) ) { $args['widget_id'] = $this->id; } if ( isset( $cache[ $args['widget_id'] ] ) ) { echo $cache[ $args['widget_id'] ]; return; } ob_start(); extract($args); $title = ( ! empty( $instance['title'] ) ) ? esc_attr( $instance['title'] ) : __( 'Contact info', 'bldr' ); $title = apply_filters( 'widget_title', esc_attr( $title ), $instance, $this->id_base ); $address = isset( $instance['address'] ) ? wp_kses_post( $instance['address'] ) : ''; $phone = isset( $instance['phone'] ) ? wp_kses_post( $instance['phone'] ) : ''; $email = isset( $instance['email'] ) ? sanitize_email( $instance['email'] ) : ''; echo $before_widget; if ( $title ) echo $before_title . esc_attr( $title ) . $after_title; if( ($address) ) { echo '