Title: Only display events in loop
Last modified: August 24, 2016

---

# Only display events in loop

 *  Resolved [guit4eva](https://wordpress.org/support/users/guit4eva/)
 * (@guit4eva)
 * [11 years ago](https://wordpress.org/support/topic/featured-image-in-loop/)
 * How would I only display only events in a loop, instead of all posts?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [guit4eva](https://wordpress.org/support/users/guit4eva/)
 * (@guit4eva)
 * [11 years ago](https://wordpress.org/support/topic/featured-image-in-loop/#post-6090850)
 * Ok, solved – just use the following args:
 *     ```
       <?php $args = array(
       		'post_type' => array( 'event' ),
       		'orderby' => 'date',
       		'order' => 'DESC',
       		'posts_per_page' => 12,
       		'paged' => get_query_var('page'),
       		'scope' => 'future'
       );
   
       query_posts($args);
       ?>
       ```
   
 *  [imjinnie](https://wordpress.org/support/users/imjinnie/)
 * (@imjinnie)
 * [11 years ago](https://wordpress.org/support/topic/featured-image-in-loop/#post-6091035)
 * what did you change? I’m trying to do what you had, which sounds like the exact
   opposite: get events to display with posts.
 *  Thread Starter [guit4eva](https://wordpress.org/support/users/guit4eva/)
 * (@guit4eva)
 * [11 years ago](https://wordpress.org/support/topic/featured-image-in-loop/#post-6091036)
 * Just to clarify: are you trying to display all the events together with all the
   posts?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Only display events in loop’ is closed to new replies.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=3550347)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [guit4eva](https://wordpress.org/support/users/guit4eva/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/featured-image-in-loop/#post-6091036)
 * Status: resolved