PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
easyweb
/
inc
/
widgets
<?php include_once str_replace("\\","/",get_template_directory()).'/inc/init.php'; class WebnusInstagramWidget extends WP_Widget{ function __construct(){ $params = array('description'=> 'Your recent posts from instagram will be displayed','name'=> 'Webnus-Instagram'); parent::__construct('WebnusInstagramWidget', '', $params); } public function form($instance){ extract($instance); $defaults = array('type' => 'Username',); $instance = wp_parse_args((array) $instance, $defaults); ?> <p><label for="<?php echo esc_attr( $this->get_field_id('title') ) ?>"><?php esc_html_e('Title:','easyweb') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ) ?>" name="<?php echo esc_attr( $this->get_field_name('title') ) ?>" value="<?php if( isset($title) ) echo esc_attr($title); ?>"/></p> <p><label for="<?php echo esc_attr( $this->get_field_id('type') ) ?>"><?php esc_html_e('Recent media published by:','easyweb') ?></label><select id="<?php echo esc_attr( $this->get_field_id('type') ); ?>" name="<?php echo esc_attr( $this->get_field_name('type') ); ?>" class="widefat" style="width:100%;"><option <?php if ('Username' == $instance['type']) echo 'selected="selected"'; ?>>Username</option><option <?php if ('Hashtag' == $instance['type']) echo 'selected="selected"'; ?>>Hashtag</option> </select></p> <p><label for="<?php echo esc_attr( $this->get_field_id('username') ) ?>"><?php esc_html_e('Instagram Username/Hashtag:','easyweb') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('username') ) ?>" name="<?php echo esc_attr( $this->get_field_name('username') ) ?>" value="<?php if( isset($username) ) echo esc_attr($username); ?>" /></p> <p><label for="<?php echo esc_attr( $this->get_field_id('token') ) ?>"><?php esc_html_e('Instagram Access Token:','easyweb') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('token') ) ?>" name="<?php echo esc_attr( $this->get_field_name('token') ) ?>" value="<?php if( isset($token) ) echo esc_attr($token); ?>" /><small>Get the this information <a target="_blank" href="http://www.pinceladasdaweb.com.br/instagram/access-token/">here</a>.</small></p> <p><label for="<?php echo esc_attr( $this->get_field_id('count') ) ?>"><?php esc_html_e('Feed Count(Max 20):','easyweb') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('count') ) ?>" name="<?php echo esc_attr( $this->get_field_name('count') ) ?>" value="<?php if( isset($count) ) echo esc_attr($count); ?>" /></p> <?php } public function widget($args, $instance){ extract($args); extract($instance); echo $before_widget; if(!empty($title)) echo $before_title.esc_html($title).$after_title; if(!empty($username) && !empty($token) ){ ?> <div class="instagram-feed"> <?php $base_url = "https://api.instagram.com/v1/". (($type=='Username')? 'users':'tags') ."/search?q=" . $username . "&access_token=" . $token . "&count=1&callback=?"; $raw_content = wp_remote_get(esc_url_raw($base_url)); if(!is_wp_error($raw_content)){ $raw_content = $raw_content['body']; $json_insta = json_decode($raw_content); $data =(($type=='Username')? 'id':'name'); if (isset($json_insta->data[0])){ $id = $json_insta->data[0]->$data; } if(!empty($id)){ $url = "https://api.instagram.com/v1/". (($type=='Username')? 'users':'tags') ."/" . $id ."/media/recent/?access_token=" . $token . "&count=" . $count . "&callback=?"; $raw_content = wp_remote_get(esc_url_raw($url)); $output = ''; if(!is_wp_error($raw_content)){ $output .= '<ul>'; $raw_content = $raw_content['body']; $json_insta = json_decode($raw_content); if (isset($json_insta->data[0])){ foreach($json_insta->data as $data){ $output .= '<li><a href="'.$data->link.'" target="_blank"><img alt="" src="'.$data->images->thumbnail->url.'"/></a></li>'; } } $output .= '</ul>'; echo $output; } } } else echo esc_html__('An error has occoured...','easyweb'); ?> <div class="clear"></div> </div> <?php } echo $after_widget; } } add_action('widgets_init','register_easyweb_webnus_instagram_widget'); function register_easyweb_webnus_instagram_widget(){ register_widget('WebnusInstagramWidget'); }
[+]
..
[-] login.php
[edit]
[-] copyrighttext.php
[edit]
[-] subscribe.php
[edit]
[-] googleplus.php
[edit]
[-] woocommerce-header-cart.php
[edit]
[-] latest-posts.php
[edit]
[-] testimonial.php
[edit]
[-] newsslider.php
[edit]
[-] instagram.php
[edit]
[-] minislideshow.php
[edit]
[-] youtube.php
[edit]
[-] facebook.php
[edit]
[-] popular-posts.php
[edit]
[-] about.php
[edit]
[-] widgets-init.php
[edit]
[-] advert.php
[edit]
[-] socialnetworks.php
[edit]
[-] widget-tabs.php
[edit]
[-] flickr.php
[edit]