acf_reset_local()ACF 5.7.10

acf_reset_local

Resets the local data.

No Hooks.

Returns

void. Nothing (null).

Usage

acf_reset_local();

Changelog

Since 5.7.10 Introduced.

acf_reset_local() code ACF 6.8.8

function acf_reset_local() {
	acf_get_local_store( 'fields' )->reset();
	acf_get_local_store( 'groups' )->reset();
	acf_get_local_store( 'post-types' )->reset();
	acf_get_local_store( 'taxonomies' )->reset();
}