Support

Account

Home Forums General Issues Show only upcoming events from current month Reply To: Show only upcoming events from current month

  • 
    <?php
      $today = date('Y-m-d');
      $last_of_month = date('Y-m-t');
      $args = array(
        'posts_per_page'  => 7,
        'post_type' => 'competicions',
        'orderby' => 'meta_value',
        'order' => 'asc',
        'meta_key' => 'datahora_prova', //ACF date field
        'meta_query' => array(
          array(
            'key' => 'datahora_prova', 
            'value' => $today, 
            'compare' => '>=',
            'type' => 'DATE'
          ),
          array(
            'key' => 'datahora_prova', 
            'value' => $last_of_month, 
            'compare' => '<=',
            'type' => 'DATE'
          )
        )
      );