_acf_apply_get_local_field_groups()ACF 5.7.10

_acf_apply_get_local_field_groups

Appends local field groups to the provided array.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Returns

array.

Usage

_acf_apply_get_local_field_groups( $groups );
$groups
.
Default: array()

Changelog

Since 5.7.10 Introduced.

_acf_apply_get_local_field_groups() code ACF 6.8.8

function _acf_apply_get_local_field_groups( $groups = array() ) {
	return _acf_apply_get_local_internal_posts( $groups, 'acf-field-group' );
}