llms_get_form_html( string $location, array $args = array() )
Retrieve the HTML for a form at the given location.
Parameters Parameters
- $location
-
(string) (Required) Form location, one of: "checkout", "registration", or "account".
- $args
-
(array) (Optional) Additional arguments passed to the short-circuit filter in
LLMS_Forms->get_form_post()
.Default value: array()
Return Return
(string)
Source Source
File: includes/functions/llms-functions-forms.php
function llms_get_form_html( $location, $args = array() ) { return LLMS_Forms::instance()->get_form_html( $location, $args ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |