acf_prefix_fields()ACF 5.6.0

acf_prefix_fields

Changes the prefix for an array of fields by reference.

Хуков нет.

Возвращает

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

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

acf_prefix_fields( $fields, $prefix );
$fields(массив) (обязательный) (передается по ссылке — &)
An array of fields.
$prefix(строка)
The new prefix.
По умолчанию: 'acf'

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

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

Код acf_prefix_fields() ACF 6.0.4

function acf_prefix_fields( &$fields, $prefix = 'acf' ) {

	// Loopover fields.
	foreach ( $fields as &$field ) {

		// Replace 'acf' with $prefix.
		$field['prefix'] = $prefix . substr( $field['prefix'], 3 );
	}
}