Home › Forums › Backend Issues (wp-admin) › Display different value with condition › Reply To: Display different value with condition
Thanks for this !
I use that and problem is solved !
<?php
// vars
$place = get_field('lieu');
// check
if( $place && in_array('maintenon', $place) ): ?>
<span class="label label-primary labellieu">Château de Maintenon</span>
<?php elseif( $place && in_array('archives', $place) ):?>
<span class="label label label-warning labellieu">Archives départementales</span>
<?php elseif( $place && in_array('compa', $place) ):?>
<span class="label label label-danger labellieu">Le Compa</span>
<?php elseif( $place && in_array('classe', $place) ):?>
<span class="label label-success labellieu">Dans la classe</span>
<?php 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.