Support

Account

Home Forums General Issues New acf entries not showing Reply To: New acf entries not showing

  • A relationship field stores an array of post IDs. Try

    
    'meta_query' => array(
        array(
            'key' => 'project',
            'value' => '"'.$post->ID.'"',
            'compare' => 'LIKE'
        )
    )