acf_field_text::render_field_presentation_settings()publicACF 6.0

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

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

Хуков нет.

Возвращает

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

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

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

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

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

Код acf_field_text::render_field_presentation_settings() ACF 6.0.4

function render_field_presentation_settings( $field ) {
	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Placeholder Text', 'acf' ),
			'instructions' => __( 'Appears within the input', 'acf' ),
			'type'         => 'text',
			'name'         => 'placeholder',
		)
	);

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Prepend', 'acf' ),
			'instructions' => __( 'Appears before the input', 'acf' ),
			'type'         => 'text',
			'name'         => 'prepend',
		)
	);

	acf_render_field_setting(
		$field,
		array(
			'label'        => __( 'Append', 'acf' ),
			'instructions' => __( 'Appears after the input', 'acf' ),
			'type'         => 'text',
			'name'         => 'append',
		)
	);
}