unikmedia

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: WP_Query events with date year filter #150518
    unikmedia
    Participant

    $evenements = new WP_Query(array(
    ‘post_type’ => ‘tribe_events’,
    ‘posts_per_page’ => ‘-1’,
    ‘orderby’ => ‘menu_order’,
    ‘order’ => ‘ASC’,
    ‘post_status’ => array(‘publish’, ‘pending’, ‘draft’, ‘auto-draft’, ‘future’, ‘private’, ‘inherit’, ‘trash’),
    ‘tribe_events_cat’ => $category,
    ‘eventDisplay’ => ‘all’,
    ‘start_date’ => $year . ‘-01-01 00:00:00’,
    ‘end_date’ => $year . ‘-12-31 23:59:59’
    ));

    Did the trick! Thank you

    in reply to: Get past Events with WP_Query #145292
    unikmedia
    Participant

    Thank you! I set it to “all” and it retrieve all my events!

Viewing 2 posts - 1 through 2 (of 2 total)