Inventory_Presser_WPForms::smart_tags_register( array $tags )

Register Smart Tags with the form builder.


Parameters Parameters

$tags

(array) (Required)


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/integrations/class-wpforms.php

		public function smart_tags_register( $tags ) {
			// Key is the tag, item is the tag name.
			foreach ( $this->tags() as $tag => $name ) {
				$tags[ $tag ] = $name;
			}
			return $tags;
		}