Support

Account

Home Forums ACF PRO Get posts if Custom Field Date is GREATER than Today's Date Reply To: Get posts if Custom Field Date is GREATER than Today's Date

  • 
    $today = date("Ymd");
    
    
    'meta_query' => array(
       array(
         'key' => 'research_enddate',
         'value' => $today,
         'compare' => '>='
       )
     ),