Home › Forums › Feature Requests › Get field that has specific 'class' or 'id' › Reply To: Get field that has specific 'class' or 'id'
Hi @pooya
You can make use of the get_field_objects() function to step through all the fields and display the ones that match your class like so:
<?php
$fields = get_field_objects();
if( $fields ): ?>
<ul>
<?php foreach( $fields as $field ): ?>
<?php if($field['wrapper']['class'] =='your_class'){
//do something here
} ?>
<?php endforeach; ?>
</ul>
<?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.