Home › Forums › General Issues › Randomize array content in PHP via WordPress posts › Reply To: Randomize array content in PHP via WordPress posts
Something like this should get you looking in the right direction.
<?php if ( have_posts() ) : while ( $fullbanner->have_posts() ) : $fullbanner->the_post(); ?>
<?php $banners = get_field(‘home_banner_01_selection’); ?>
<?php if( $banners ): ?>
<?php shuffle($banners); ?>
<?php foreach(array_slice($banners, 0, 1) as $banner ): ?>
<?php the_field( 'home_headline', $banner->ID ); ?>
<?php endforeach; ?>
<?php endif; ?>
<?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.