PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
easyweb
/
inc
/
widgets
<?php include_once str_replace("\\","/",get_template_directory()).'/inc/init.php'; class Easyweb_Webnus_PopularPosts extends WP_Widget{ function __construct(){ $params = array('description'=> 'Display Popular Posts','name'=> 'Webnus-Popular Posts'); parent::__construct('Easyweb_Webnus_PopularPosts', '', $params); } public function form($instance){ extract($instance); ?> <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('numberOfPosts') ) ?>"><?php esc_html_e('Number of Posts:','easyweb') ?></label><input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('numberOfPosts') ) ?>" name="<?php echo esc_attr( $this->get_field_name('numberOfPosts') ) ?>" value="<?php if( isset($numberOfPosts) ) echo esc_attr($numberOfPosts); ?>" /></p> <?php } public function widget($args, $instance){ extract($args); extract($instance); if(!isset($title)) $title=''; if(!isset($numberOfPosts)) $numberOfPosts=5; echo $before_widget; if(!empty($title)) echo $before_title.esc_html($title).$after_title; ?> <div class="side-list"><ul> <?php $wpbp = new WP_Query(array( 'post_type' => 'post', 'paged'=>1, 'posts_per_page'=>$numberOfPosts,'orderby'=>'comment_count')); $temp_out = ""; if ($wpbp->have_posts()) : while ($wpbp->have_posts()) : $wpbp->the_post(); ?> <li> <?php get_the_image( array( 'meta_key' => array( 'Full', 'Full' ), 'size' => 'easyweb_webnus_tabs_img' ) ); ?> <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> <p><?php comments_number(); ?></p> </li> <?php endwhile; endif; wp_reset_postdata(); ?> </ul></div> <?php echo $after_widget; } } add_action('widgets_init', 'register_easyweb_webnus_PopularPosts'); function register_easyweb_webnus_PopularPosts(){ register_widget('Easyweb_Webnus_PopularPosts'); }
[+]
..
[-] 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]