????

Your IP : 216.73.216.152


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

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

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

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

// Get portfolio thumbnail
$thumbnail = tb_get_staff_post_thumbnail();

if ( $attachments || $thumbnail ) : ?>

	<div id="staff-single-media" class="clr">
		<?php if ( $attachments ) : ?>
			<?php get_template_part( 'partials/staff/staff-single-gallery' ); ?>
		<?php 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><!-- .staff-entry-media -->

<?php endif; ?>