acf_pro::include_field_types()publicACF 5.2.3

Includes any files necessary for field types.

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

Хуков нет.

Возвращает

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

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

$acf_pro = new acf_pro();
$acf_pro->include_field_types();

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

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

Код acf_pro::include_field_types() ACF 6.0.4

function include_field_types() {
	acf_include( 'pro/fields/class-acf-repeater-table.php' );
	acf_include( 'pro/fields/class-acf-field-repeater.php' );
	acf_include( 'pro/fields/class-acf-field-flexible-content.php' );
	acf_include( 'pro/fields/class-acf-field-gallery.php' );
	acf_include( 'pro/fields/class-acf-field-clone.php' );
}