Home › Forums › General Issues › Display a Basic Field Group › Reply To: Display a Basic Field Group
Ah, got it. Using the Repeater field or the Gallery field would be much easier to accomplish this.
To accomplish what you want to accomplish, you would have to use the
get_field_object() function.
Let’s start off dumping everything and seeing what we are working with:
<code>
<pre><?php $fields = get_field_objects(); var_dump( $fields ); ?>
</pre>
</code>
That will spit out the multi-dimentional array, in which you can just loop through it and get the data you need! You will need to do this within the WP loop, btw.
Note: The return value for my image fields are set as image objects.
<?php $fields = get_field_objects(); ?>
<?php if( $fields ): ?>
<?php foreach( $fields as $field ): ?>
<div><img src="<?php echo $field['value']["url"]; ?>" alt=""></div>
<?php endforeach; ?>
<?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.