Home › Forums › ACF PRO › Assign Private to JSON? › Reply To: Assign Private to JSON?
I don’t see any way to set this when editing ACF field groups.
I did find a filter that might help you, here is the code that calls it in ACF
$field_group = apply_filters('acf/prepare_field_group_for_export', $field_group);
something like:
add_filter('acf/prepare_field_group_for_export', 'add_private_to_groups');
function add_private_to_groups($group) {
$my_groups = array(
// create an array of the group keys you want to make private
'group_57b9eb1116505'
);
if (in_array($group['key'], $my_groups) {
$group['private'] = true;
}
return $group;
}
I’m not sure this will work, but it seems like it should.
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.