Home › Forums › ACF PRO › Get list of ACF fields › Reply To: Get list of ACF fields
You can get a list of acf fields groups associated with a specific post. And then you can get a list of fields in each group
// this has not been tested
$field_groups = acf_get_fields(array('post_id' => $post_id));
foreach ($groups as $group) {
$fields_for_group = acf_get_fields($group['key']);
}
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.