Home › Forums › ACF PRO › Get a lists of fields groups by page ? › Reply To: Get a lists of fields groups by page ?
From ACF posts.php and api-field-groups.php, this should get you started:
$posts = get_posts(array(
'post_type' => 'acf-field-group',
'posts_per_page' => -1,
'orderby' => 'menu_order title',
'order' => 'asc',
'suppress_filters' => false, // allow WPML to modify the query
'post_status' => 'publish',
'update_post_meta_cache' => false
));
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.