PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
widgets
<?php class deep_LatestPosts extends WP_Widget{ function __construct(){ $params = array('description'=> 'Display Latest Posts','name'=> 'Webnus-Latest Posts'); parent::__construct('deep_LatestPosts', '', $params); } public function form($instance){ extract($instance);?> <p><label for="<?php echo esc_attr( $this->get_field_id('title') ) ?>"><?php esc_html_e('Title:','deep') ?></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:','deep') ?></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, 'order' => 'DESC' ) ); $temp_out = ""; if ($wpbp->have_posts()) : while ($wpbp->have_posts()) : $wpbp->the_post(); $thumbnail_url = get_the_post_thumbnail_url(); $thumbnail_id = get_post_thumbnail_id(); ?> <li> <?php if ( !empty ($thumbnail_url ) ) : ?> <img src="<?php echo '' . $thumbnail_url ?>" alt="<?php the_title(); ?>" > <?php endif; ?> <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> <p><?php the_time(get_option( 'date_format' )) ?></p> </li> <?php endwhile; endif; wp_reset_postdata(); ?> </ul></div> <?php echo '' . $after_widget; } } add_action('widgets_init', 'register_deep_LatestPosts'); function register_deep_LatestPosts(){ register_widget('deep_LatestPosts'); }
[+]
..
[-] daily-post.php
[edit]
[-] latest-posts.php
[edit]
[-] about.php
[edit]
[-] testimonial.php
[edit]
[-] socialnetworks.php
[edit]
[-] colorful-categories.php
[edit]
[-] googleplus.php
[edit]
[-] recent-posts.php
[edit]
[-] recently-active-members.php
[edit]
[-] newsslider.php
[edit]
[-] minislideshow.php
[edit]
[-] community-statistics.php
[edit]
[-] popular-posts.php
[edit]
[-] youtube.php
[edit]
[-] widgets-init.php
[edit]
[-] flickr.php
[edit]
[-] widget-tabs.php
[edit]
[-] subscribe.php
[edit]
[-] facebook.php
[edit]
[-] sermon-categories.php
[edit]
[-] popular-recipe.php
[edit]
[-] advert.php
[edit]
[-] latest-review.php
[edit]
[-] deep-woocommerce-layered-nav.php
[edit]
[-] instagram.php
[edit]
[-] login.php
[edit]
[-] copyrighttext.php
[edit]
[-] woocommerce-header-cart.php
[edit]
[-] last_comments.php
[edit]