108 lines
4.2 KiB
PHP
108 lines
4.2 KiB
PHP
<?php
|
|
|
|
class Float_Widget_Recent_Post extends WP_Widget {
|
|
public function __construct() {
|
|
$widget_ops = array(
|
|
'classname' => 'float_widget_recent_entries',
|
|
'description' => __( 'Your site’s most recent Posts.' ),
|
|
'customize_selective_refresh' => true,
|
|
);
|
|
parent::__construct( 'float-recent-posts', __( 'Float Recent Posts' ), $widget_ops );
|
|
$this->alt_option_name = 'float_widget_recent_entries';
|
|
}
|
|
|
|
public function widget( $args, $instance ) {
|
|
if ( ! isset( $args['widget_id'] ) ) {
|
|
$args['widget_id'] = $this->id;
|
|
}
|
|
|
|
$title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : __( 'Recent Posts' );
|
|
|
|
/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
|
|
$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );
|
|
|
|
$number = ( ! empty( $instance['number'] ) ) ? absint( $instance['number'] ) : 5;
|
|
if ( ! $number ) {
|
|
$number = 5;
|
|
}
|
|
|
|
$r = new WP_Query(
|
|
apply_filters(
|
|
'widget_posts_args',
|
|
array(
|
|
'posts_per_page' => $number,
|
|
'no_found_rows' => true,
|
|
'post_status' => 'publish',
|
|
'ignore_sticky_posts' => true,
|
|
),
|
|
$instance
|
|
)
|
|
);
|
|
|
|
if ( ! $r->have_posts() ) {
|
|
return;
|
|
}
|
|
?>
|
|
<?php echo $args['before_widget']; ?>
|
|
<?php
|
|
if ( $title ) {
|
|
echo $args['before_title'] . $title . $args['after_title'];
|
|
}
|
|
?>
|
|
<ul class="oceanwp-recent-posts clr">
|
|
<?php foreach ( $r->posts as $recent_post ) : ?>
|
|
<?php
|
|
$post_title = get_the_title( $recent_post->ID );
|
|
$title = ( ! empty( $post_title ) ) ? $post_title : __( '(no title)' );
|
|
?>
|
|
<li class="clr">
|
|
<?php if (has_post_thumbnail( $recent_post->ID )) : ?>
|
|
<a href="<?php the_permalink( $recent_post->ID ); ?>" title="<?php echo $post_title; ?>" class="recent-posts-thumbnail">
|
|
<img width="150" height="150" src="<?php echo get_the_post_thumbnail_url( $recent_post->ID, 'thumbnail' ); ?>" class="attachment-thumbnail size-thumbnail wp-post-image" alt="<?php echo $post_title; ?>" loading="lazy" itemprop="image">
|
|
<span class="overlay"></span>
|
|
</a>
|
|
<?php endif; ?>
|
|
<div class="recent-posts-details clr">
|
|
<div class="recent-posts-details-inner clr">
|
|
<a href="<?php the_permalink( $recent_post->ID ); ?>" title="<?php echo $post_title; ?>" class="recent-posts-title"><?php echo $post_title; ?></a>
|
|
<div class="recent-posts-info clr">
|
|
<div class="recent-posts-date"><?php echo get_the_date( 'F j, Y', $recent_post->ID ) ?><span class="sep">/</span></div>
|
|
<div class="recent-posts-comments"><a href="<?php echo get_comments_link( $recent_post->ID ); ?>"><?php echo get_comments_number( $recent_post->ID ) ?> Comments</a></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php
|
|
echo $args['after_widget'];
|
|
}
|
|
|
|
public function update( $new_instance, $old_instance ) {
|
|
$instance = $old_instance;
|
|
$instance['title'] = sanitize_text_field( $new_instance['title'] );
|
|
$instance['number'] = (int) $new_instance['number'];
|
|
return $instance;
|
|
}
|
|
|
|
public function form( $instance ) {
|
|
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
|
|
$number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
|
|
?>
|
|
<p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $title; ?>" placeholder="Recent Posts" /></p>
|
|
|
|
<p><label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of posts to show:' ); ?></label>
|
|
<input class="tiny-text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="number" step="1" min="1" value="<?php echo $number; ?>" size="3" /></p>
|
|
<?php
|
|
}
|
|
}
|
|
|
|
// Register the widget
|
|
function float_widget_recent_post_function() {
|
|
register_widget( 'Float_Widget_Recent_Post' );
|
|
}
|
|
add_action( 'widgets_init', 'float_widget_recent_post_function' );
|
|
|
|
?>
|