display future post
-
Hello I woul like te rewrite this par of code, so that it will display both published and future post
<div class="carousel-slider-outer carousel-slider-outer-posts carousel-slider-outer-<?php echo $id; ?>"> <?php carousel_slider_inline_style( $id ); ?> <div <?php echo join( " ", $this->carousel_options( $id ) ); ?>> <?php $posts = carousel_slider_posts( $id ); foreach ( $posts as $_post ): global $post; $post = $_post; setup_postdata( $post ); $category = get_the_category( $post->ID ); do_action( 'carousel_slider_post_loop', $post, $category ); $html = '<div class="carousel-slider__post">'; $html .= '<div class="carousel-slider__post-content">'; $html .= '<div class="carousel-slider__post-header">'; // Post Thumbnail $_permalink = esc_url( get_permalink( $post->ID ) ); $_thumb_id = get_post_thumbnail_id( $post->ID ); $_excerpt = wp_trim_words( wp_strip_all_tags( $post->post_content ), '20', ' ...' ); // Post Title $html .= sprintf( '<a class="carousel-slider__post-title" href="%s"><h3>%s</h3></a>', $_permalink, $post->post_title ); $html .= '</div>'; // End Post Header // Post date $_created = strtotime( $post->post_date ); $_modified = strtotime( $post->post_modified );
Have you any idea, how to rewrite it?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘display future post’ is closed to new replies.