ACF\Pro\Datastore

Localization::enqueuepublicACF 6.8.1

Enqueues the datastore script and localizes the field store data when the datastore is enabled.

Метод класса: Localization{}

Хуков нет.

Возвращает

void. Ничего (null).

Использование

$Localization = new Localization();
$Localization->enqueue();

Список изменений

С версии 6.8.1 Введена.

Код Localization::enqueue() ACF 6.8.8

public function enqueue() {
	if ( ! acf_is_using_datastore() ) {
		return;
	}

	wp_enqueue_script( 'acf-datastore' );
	$this->localize_field_store_data();
}