acf_dev_log()ACF 5.7.4

acf_dev_log

Used to log variables only if ACF_DEV is defined

Хуков нет.

Возвращает

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

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

acf_dev_log();

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

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

Код acf_dev_log() ACF 6.0.4

function acf_dev_log() {
	if ( defined( 'ACF_DEV' ) && ACF_DEV ) {
		call_user_func_array( 'acf_log', func_get_args() );
	}
}