ACF\Blocks\AutoInlineEditing

get_allowed_contenteditable_fields()ACF 1.0

Returns an array of field type names which support contenteditable (allows typing text) attribute.

No Hooks.

Returns

Array.

Usage

get_allowed_contenteditable_fields(): array;

get_allowed_contenteditable_fields() code ACF 6.8.8

function get_allowed_contenteditable_fields(): array {
	return array( 'text', 'textarea' );
}