File: //proc/self/cwd/wp-content/themes/blog-articles/inc/widgets/featured-posts-widget.php
<?php
if ( ! class_exists( 'Blog_Articles_Featured_Posts_Widget' ) ) {
/**
* Adds Blog Articles Featured Posts Widget.
*/
class Blog_Articles_Featured_Posts_Widget extends WP_Widget {
/**
* Register widget with WordPress.
*/
public function __construct() {
$featured_posts_widget = array(
'classname' => 'widget adore-widget featured-widget',
'description' => __( 'Retrive Posts List Widgets', 'blog-articles' ),
);
parent::__construct(
'blog_articles_featured_posts_widget',
__( 'Adore Widget: Featured Posts Widget', 'blog-articles' ),
$featured_posts_widget
);
}
/**
* Front-end display of widget.
*
* @see WP_Widget::widget()
*
* @param array $args Widget arguments.
* @param array $instance Saved values from database.
*/
public function widget( $args, $instance ) {
if ( ! isset( $args['widget_id'] ) ) {
$args['widget_id'] = $this->id;
}
$featured_posts_title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : '';
$featured_posts_title = apply_filters( 'widget_title', $featured_posts_title, $instance, $this->id_base );
$featured_posts_post_offset = isset( $instance['offset'] ) ? absint( $instance['offset'] ) : '';
$featured_posts_category = isset( $instance['category'] ) ? absint( $instance['category'] ) : '';
echo $args['before_widget'];
if ( ! empty( $featured_posts_title ) ) {
echo $args['before_title'] . esc_html( $featured_posts_title ) . $args['after_title'];
}
?>
<div class="adore-widget-body">
<?php
$featured_posts_widgets_args = array(
'post_type' => 'post',
'posts_per_page' => absint( 4 ),
'offset' => absint( $featured_posts_post_offset ),
'cat' => absint( $featured_posts_category ),
);
$query = new WP_Query( $featured_posts_widgets_args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
?>
<div class="post-item post-list featured-list small-list">
<?php if ( has_post_thumbnail() ): ?>
<div class="post-item-image">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<?php endif; ?>
<div class="post-item-content">
<h3 class="entry-title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h3>
<ul class="entry-meta">
<li class="post-author"> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"><i class="far fa-user"></i><?php echo esc_html( get_the_author() ); ?></a></li>
<li class="post-date"><i class="far fa-calendar-alt"></i></span><?php echo esc_html( get_the_date() ); ?></li>
</ul>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
endif;
?>
</div>
<?php
echo $args['after_widget'];
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
public function form( $instance ) {
$featured_posts_title = isset( $instance['title'] ) ? $instance['title'] : '';
$featured_posts_post_offset = isset( $instance['offset'] ) ? absint( $instance['offset'] ) : '';
$featured_posts_category = isset( $instance['category'] ) ? absint( $instance['category'] ) : '';
?>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Section Title:', 'blog-articles' ); ?></label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $featured_posts_title ); ?>" />
</p>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php esc_html_e( 'Number of posts to displace or pass over:', 'blog-articles' ); ?></label>
<input class="tiny-text" id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="number" step="1" min="0" value="<?php echo absint( $featured_posts_post_offset ); ?>" size="3" />
</p>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>"><?php esc_html_e( 'Select the category to show posts:', 'blog-articles' ); ?></label>
<select id="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'category' ) ); ?>" class="widefat" style="width:100%;">
<?php
$categories = blog_articles_get_post_cat_choices();
foreach ( $categories as $category => $value ) {
?>
<option value="<?php echo absint( $category ); ?>" <?php selected( $featured_posts_category, $category ); ?>><?php echo esc_html( $value ); ?></option>
<?php } ?>
</select>
</p>
<?php
}
/**
* Sanitize widget form values as they are saved.
*
* @see WP_Widget::update()
*
* @param array $new_instance Values just sent to be saved.
* @param array $old_instance Previously saved values from database.
*
* @return array Updated safe values to be saved.
*/
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = sanitize_text_field( $new_instance['title'] );
$instance['offset'] = (int) $new_instance['offset'];
$instance['category'] = (int) $new_instance['category'];
return $instance;
}
}
}