Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter guit4eva

    (@guit4eva)

    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);
    ?>

    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

    (@guit4eva)

    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.