acf_get_local_field()ACF 5.7.10

acf_get_local_field

Returns a field for the given key.

No Hooks.

Returns

(Array|null).

Usage

acf_get_local_field( $key );
$key(string)
The field group key.
Default: ''

Changelog

Since 5.7.10 Introduced.

acf_get_local_field() code ACF 6.0.4

function acf_get_local_field( $key = '' ) {
	return acf_get_local_store( 'fields' )->get( $key );
}