acf_field_relationship::render_field_presentation_settings()publicACF 6.0

Renders the field settings used in the "Presentation" tab.

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

Хуков нет.

Возвращает

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

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

$acf_field_relationship = new acf_field_relationship();
$acf_field_relationship->render_field_presentation_settings( $field );
$field(массив) (обязательный)
The field settings array.

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

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

Код acf_field_relationship::render_field_presentation_settings() ACF 6.0.4

function render_field_presentation_settings( $field ) {
	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Elements', 'acf' ),
			'instructions' => __( 'Selected elements will be displayed in each result', 'acf' ),
			'type'         => 'checkbox',
			'name'         => 'elements',
			'choices'      => array(
				'featured_image' => __( 'Featured Image', 'acf' ),
			),
		)
	);
}