lifterlms_loop_featured_video()

Output a featured video on the course tile in a LifterLMS Loop


Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms.functions.templates.loop.php

265
266
267
268
269
270
271
272
273
274
275
276
* @since 7.1.3 Add div tag to wrap featured video output in loop.
 *
 * @return void
 */
function lifterlms_loop_featured_video() {
    global $post;
    if ( 'course' === $post->post_type ) {
        $course = llms_get_post( $post );
        if ( 'yes' === $course->get( 'tile_featured_video' ) ) {
            $video = $course->get_video();
            if ( $video ) {
                echo '<div class="llms-video-wrapper">' . $video . '</div>';


Top ↑

Changelog Changelog

Changelog
Version Description
3.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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