Your IP : 216.73.216.95


Current Path : /var/test/www/ya/wp-content/themes/youthy/event/
Upload File :
Current File : /var/test/www/ya/wp-content/themes/youthy/event/loop.php

<?php

  // Get All Events Posts - Future only!
  $future_query = new WP_Query( array ( 'post_type' => 'event', 'posts_per_page' => '999', 'post_status' => 'future', 'order' => 'asc' ) );

  if ( $future_query->have_posts() ) { ?>
    <div class="loop event-loop">
      <h4><?php echo esc_html( get_theme_mod( 'content_event_title_future' , __( 'Upcoming Events' , 'meanthemes' ) ) ); ?></h4>
  <?php }

  while ( $future_query->have_posts() ) : $future_query->the_post();

    get_template_part('event/item');

  endwhile;

  if ( $future_query->have_posts() ) { ?>
    </div>
  <?php }


  // Get All Events Posts - Past/Published only!
  $publish_query = new WP_Query( array ( 'post_type' => 'event', 'posts_per_page' => '999', 'post_status' => 'publish' ) );

  if ( $publish_query->have_posts() ) { ?>
    <div class="loop event-loop">
      <h4><?php echo esc_html( get_theme_mod( 'content_event_title_past' , __( 'Past Events' , 'meanthemes' ) ) ); ?></h4>
  <?php }

  while ( $publish_query->have_posts() ) : $publish_query->the_post();

    get_template_part('event/item');

  endwhile;

  if ( $publish_query->have_posts() ) { ?>
    </div>
  <?php }

   ?>