Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
pokeloken
/
admin
/
wp-content
/
plugins
/
bdevs-toolkit
/
widgets
:
bdevs-latest-posts-footer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php Class Latest_posts_footer_Widget extends WP_Widget { public function __construct() { parent::__construct( 'bdevs-latest-posts-footer', 'Netfix Footer Posts Image', [ 'description' => 'Netfix Post Widget by Fastpro', ] ); } public function widget( $args, $instance ) { extract( $args ); extract( $instance ); echo $before_widget; if ( $instance['title'] ): echo $before_title;?> <?php echo apply_filters( 'widget_title', $instance['title'] ); ?> <?php echo $after_title; ?> <?php endif;?> <div class="recent-posts recent-posts-footer"> <?php $q = new WP_Query( [ 'post_type' => 'post', 'posts_per_page' => ( $instance['count'] ) ? $instance['count'] : '3', 'order' => ( $instance['posts_order'] ) ? $instance['posts_order'] : 'DESC', 'orderby' => 'comment_count', ] ); if ( $q->have_posts() ): while ( $q->have_posts() ): $q->the_post(); ?> <div class="news-item-sm"> <?php if ( has_post_thumbnail() ): ?> <div class="thumb"> <a href="<?php the_permalink();?>"><?php the_post_thumbnail( 'thumbnail' );?></a> </div> <?php endif; ?> <div class="content"> <h5><a href="<?php the_permalink();?>"><?php print wp_trim_words( get_the_title(), 6, '' );?> </a></h5> <span class="date"><i class="fal fa-calendar-alt"></i> <span><?php the_time( 'F d, Y' );?></span></span> </div> </div> <?php endwhile; wp_reset_query(); endif;?> </div> <?php echo $after_widget; ?> <?php } public function form( $instance ) { $title = !empty( $instance['title'] ) ? $instance['title'] : ''; $count = !empty( $instance['count'] ) ? $instance['count'] : esc_html__( '3', 'bdevs-toolkits' ); $posts_order = !empty( $instance['posts_order'] ) ? $instance['posts_order'] : esc_html__( 'DESC', 'bdevs-toolkits' ); $choose_style = !empty( $instance['choose_style'] ) ? $instance['choose_style'] : esc_html__( 'style_1', 'bdevs-toolkits' ); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>">Title</label> <input type="text" name="<?php echo $this->get_field_name( 'title' ); ?>" id="<?php echo $this->get_field_id( 'title' ); ?>" value="<?php echo esc_attr( $title ); ?>" class="widefat"> </p> <p> <label for="<?php echo $this->get_field_id( 'count' ); ?>">How many posts you want to show ?</label> <input type="number" name="<?php echo $this->get_field_name( 'count' ); ?>" id="<?php echo $this->get_field_id( 'count' ); ?>" value="<?php echo esc_attr( $count ); ?>" class="widefat"> </p> <p> <label for="<?php echo $this->get_field_id( 'posts_order' ); ?>">Posts Order</label> <select name="<?php echo $this->get_field_name( 'posts_order' ); ?>" id="<?php echo $this->get_field_id( 'posts_order' ); ?>" class="widefat"> <option value="" disabled="disabled">Select Post Order</option> <option value="ASC" <?php if ( $posts_order === 'ASC' ) {echo 'selected="selected"';}?>>ASC</option> <option value="DESC" <?php if ( $posts_order === 'DESC' ) {echo 'selected="selected"';}?>>DESC</option> </select> </p> <?php } } add_action( 'widgets_init', function () { register_widget( 'Latest_posts_footer_Widget' ); } );