Template Variables
HTML Forms provides several template variables you can use in your form content. These form variables will be dynamically replaced when the form is shown. Currently, you can use the following variables.
user
Will be replaced with the specified property of the currently logged-in user.
{{ user.user_email }}
url_params
This will be replaced with a parameter from the page URL, or with an empty string if the specified URL parameter does not exist.
{{url_params.utm_source}}
post
This will be substituted with the specified property of the post that is viewed on the page the form is displayed on.
{{post.ID}}
Related Posts from Our Knowledge Base
HTML Forms can store all of your form submissions in your database. You can then view these Submissions from inside the WordPress admin.
HTML Forms Premium adds an action to let you connect your form data to an external service using a webhook. This feature helps unlock the base plugin in an incredible number of ways. You can send data from your visitors to third-party applications or your own internal software tools. How to Create a Webhook Action […]