LLMS_Shortcode_Course_Meta_Info

LLMS_Shortcode_Course_Meta_Info


Source Source

File: includes/shortcodes/class.llms.shortcode.course.meta.info.php

20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
class LLMS_Shortcode_Course_Meta_Info extends LLMS_Shortcode_Course_Element {
 
    /**
     * Shortcode tag
     *
     * @var string
     */
    public $tag = 'lifterlms_course_meta_info';
 
    /**
     * Call the template function for the course element
     *
     * @since 3.6.0
     *
     * @return void
     */
    protected function template_function() {
 
        echo '<div class="llms-meta-info">';
        lifterlms_template_single_length();
        lifterlms_template_single_difficulty();
        lifterlms_template_single_course_tracks();
        lifterlms_template_single_course_categories();
        lifterlms_template_single_course_tags();
        echo '</div><!-- .llms-meta-info -->';
 
    }
 
}


Top ↑

Methods Methods


Top ↑

Changelog Changelog

Changelog
Version Description
3.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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