acf_debug_end()ACF 1.0

Хуков нет.

Возвращает

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

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

acf_debug_end();

Код acf_debug_end() ACF 6.0.4

function acf_debug_end() {

	$start = acf_get_setting( 'debug_start' );
	$end   = memory_get_usage();

	return $end - $start;

}