Home › Forums › General Issues › Create loop of posts with relationship field; only show one per field › Reply To: Create loop of posts with relationship field; only show one per field
Hi,
I actually solved it by making an array and then check for duplicate custom fields, like so:
<?php
$args = array(
'post_type' => 'deals'
);
$the_query = new WP_Query($args);
$unieke_deals = array();
if ($the_query->have_posts()):
while ($the_query->have_posts()):
$the_query->the_post();
$bedrijf = get_field('company');
if (!in_array($bedrijf, $unieke_deals)):
$unieke_deals[] = $bedrijf;
?>
<?php the_field('company'); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
<?php
endif;
endwhile;
endif;
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.