Inventory_Presser_WPForms::add_field_types( array $allowed_form_fields )

Adds our field type to the list of field types WPForms recognizes as valid.

On This Page


Parameters Parameters

$allowed_form_fields

(array) (Required)


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/integrations/class-wpforms.php

		public function add_field_types( $allowed_form_fields ) {
			$allowed_form_fields[] = 'vehicle';
			return $allowed_form_fields;
		}