llms_setup_question_data( mixed $post )

When the_post is called, put question data into a global.


Parameters Parameters

$post

(mixed) (Required)


Top ↑

Return Return

(LLMS_Question)


Top ↑

Source Source

File: includes/llms.template.functions.php

	function lifterlms_get_content( $args ) {

		llms_get_template( 'content-single-question.php', $args );
	}
}

/**
 * When the_post is called, put course data into a global.
 *
 * @param mixed $post
 * @return LLMS_Course
 */
function llms_setup_course_data( $post ) {
	if ( ! is_admin() ) {

		if ( $post && 'course' === $post->post_type ) {

			unset( $GLOBALS['course'] );

Top ↑

User Contributed Notes User Contributed Notes

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