Files
DESKTOP-GBA0BK8\Admin 7c8c8b1c76 first commit
2023-04-08 12:19:53 -04:00

119 lines
4.9 KiB
PHP

<?php
class Float_Widget_Incoming_Post extends WP_Widget {
public function __construct() {
$widget_ops = array(
'classname' => 'float_widget_recent_entries',
'description' => __( 'Your site&#8217;s most incoming Posts.' ),
'customize_selective_refresh' => true,
);
parent::__construct( 'float-recent-posts', __( 'Float Incoming 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'] : __( 'Incoming 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;
}
$show_date = isset( $instance['show_date'] ) ? $instance['show_date'] : false;
$r = new WP_Query(
apply_filters(
'widget_posts_args',
array(
'posts_per_page' => $number,
'no_found_rows' => true,
'post_status' => 'future',
'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'];
}
?>
<div class="post-list">
<?php foreach ( $r->posts as $recent_post ) : ?>
<?php
$post_title = get_the_title( $recent_post->ID );
$title = ( ! empty( $post_title ) ) ? $post_title : __( '(no title)' );
?>
<div class="post-item card border-0">
<?php //if (has_post_thumbnail( $recent_post->ID )) : ?>
<!-- <div class="post-thumbnail">
<a href="<?php //the_permalink( $recent_post->ID ); ?>">
<img class="card-img-top" src="<?php //echo get_the_post_thumbnail_url( $recent_post->ID ); ?>"/>
</a>
</div> -->
<?php //endif; ?>
<div class="card-body">
<h5 class="card-title">
<a href="<?php the_permalink( $recent_post->ID ); ?>">
<?php echo wp_trim_words( $title, 10, '...' ); ?>
</a>
</h5>
<?php if (has_excerpt($recent_post->ID)): ?>
<p><?php echo wp_trim_words( get_the_excerpt( $recent_post->ID), 20, '...' ); ?></p>
<?php else: ?>
<p><?php echo wp_trim_words( get_post_field('post_content', $recent_post->ID), 20, '...' ); ?></p>
<?php endif; ?>
<p class="read-more text-right"><a href="<?php the_permalink( $recent_post->ID ); ?>">Coming soon</a></p>
</div>
</div>
<?php endforeach; ?>
</div>
<?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'];
$instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false;
return $instance;
}
public function form( $instance ) {
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
$number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
$show_date = isset( $instance['show_date'] ) ? (bool) $instance['show_date'] : false;
?>
<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; ?>" /></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>
<p><input class="checkbox" type="checkbox"<?php checked( $show_date ); ?> id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>" />
<label for="<?php echo $this->get_field_id( 'show_date' ); ?>"><?php _e( 'Display post date?' ); ?></label></p>
<?php
}
}
// Register the widget
function float_widget_incoming_post_function() {
register_widget( 'Float_Widget_Incoming_Post' );
}
add_action( 'widgets_init', 'float_widget_incoming_post_function' );
?>