<?php
/*
______ _____   _______ _______ _______ _______ ______ _______
|   __ \     |_|    ___|_     _|   |   |       |   __ \   _   |
|    __/       |    ___| |   | |       |   -   |      <       |
|___|  |_______|_______| |___| |___|___|_______|___|__|___|___|

P L E T H O R A T H E M E S . C O M                    (c) 2022

Single View Template Parts / Media, according to post format ( image, audio or video )
 */
?>
<div class="slider_wrapper"><div class="owl-carousel owl-room-single-carousel">
<?php
$media_config = Plethora_Theme::get_post_media(array(
    'post_id'      => get_the_ID(),
    'type'         => 'gallery',
    'stretch'      => true,
    'link_to_post' => false,
    'return'       => 'config',
));
foreach ($media_config['media'] as $media) {

    echo $media['html'];

}
?>  </div></div> <?php
