acf_pro_remove_license_status()ACF 6.2

Removes the ACF PRO license status.

Хуков нет.

Возвращает

true|false. True if the transient was deleted, false otherwise.

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

acf_pro_remove_license_status();

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

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

Код acf_pro_remove_license_status() ACF 6.4.2

function acf_pro_remove_license_status() {
	$store = acf_get_store( 'acf_pro_license_status' );
	$store->reset();

	return acf_pro_delete_license_option( 'acf_pro_license_status' );
}