llms_get_form( string $location, array $args = array() )

Retrieve the form post for a form at a 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()


Top ↑

Return Return

(WP_Post|false)


Top ↑

Source Source

File: includes/functions/llms-functions-forms.php

function llms_get_form( $location, $args = array() ) {
	return LLMS_Forms::instance()->get_form_post( $location, $args );
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.