get_lesson_data( $lessons )
Returns post array of data for lessons associated with a course
Contents
Parameters Parameters
-
(array) (Required)
Return Return
(array)
Source Source
File: includes/llms.template.functions.php
$GLOBALS['lesson'] = get_lesson( $post );
llms_setup_course_data( $parent_course );
return $GLOBALS['lesson'];
}
}
}
add_action( 'the_post', 'llms_setup_lesson_data' );
/**
* Returns post array of data for sections associated with a course
*
* @param array
* @return array
*/
function get_section_data( $sections ) {
global $post;
$html = '';
$args = array(
'post_type' => 'section',
'post_status' => 'publish',
'nopaging' => true,
);
$sections_query = get_posts( $args );
Expand full source code Collapse full source code View on GitHub