llms_get_sales_page_types()

Get an array of available course/membership sales page options


Return Return

(array)


Top ↑

Source Source

File: includes/admin/llms.functions.admin.php

function llms_get_sales_page_types() {
	return apply_filters(
		'llms_sales_page_types',
		array(
			'none'    => __( 'Display default course content', 'lifterlms' ),
			'content' => __( 'Show custom content', 'lifterlms' ),
			'page'    => __( 'Redirect to WordPress Page', 'lifterlms' ),
			'url'     => __( 'Redirect to custom URL', 'lifterlms' ),
		)
	);
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.23.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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