????

Your IP : 216.73.216.121


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/portfolio/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/portfolio/portfolio-single-media.php

<?php
/**
 * Portfolio single media template part
 *
 * @package Wanderfuls WordPress theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

// Get portfolio video
$video = tb_get_portfolio_post_video();

// Get portfolio attachment ( gallery images )
$attachments = tb_get_gallery_ids( get_the_ID() );

// Get portfolio thumbnail
$thumbnail = ( ! $video ) ? tb_get_portfolio_post_thumbnail() : ''; ?>

<div id="portfolio-single-media" class="clr">

    <?php
    // Display slider if there are $attachments
    if ( $attachments ) :

        get_template_part( 'partials/portfolio/portfolio-single-gallery' );

    // Display Post Video if defined
    elseif ( $video ) : ?>
    
        <?php echo $video; ?>
    
    <?php
    // Otherwise display post thumbnail
    elseif ( $thumbnail ) : ?>

        <?php
        // Load lightbox styles
        tb_enqueue_ilightbox_skin(); ?>

        <a href="<?php tb_lightbox_image(); ?>" title="<?php tb_esc_title(); ?>" class="tb-lightbox">
            <?php echo $thumbnail; ?>
        </a>

    <?php endif; ?>

</div><!-- .portfolio-entry-media -->