Skip to content

Instantly share code, notes, and snippets.

@mwangepatrick
Created December 4, 2014 15:46
Show Gist options
  • Save mwangepatrick/06d2ffc4e0ea1c8ef46e to your computer and use it in GitHub Desktop.
Save mwangepatrick/06d2ffc4e0ea1c8ef46e to your computer and use it in GitHub Desktop.
function my_acf_get_fields_in_group( $group_id ) {
$acf_meta = get_post_custom( $group_id );
$acf_fields = array();
foreach ( $acf_meta as $key => $val ) {
if ( preg_match( "/^field_/", $key ) ) {
$acf_fields[$key] = $val;
}
}
return $acf_fields;
}
@alexeightsix
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment