????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/staff-entry-media.php |
<?php
/**
* Staff entry media template part
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Get thumbnail
$thumbnail = tb_get_staff_entry_thumbnail();
// Return if thumbnail isn't defined
if ( ! $thumbnail ) {
return;
}
// Classes
$classes = array( 'staff-entry-media', 'clr' );
if ( $overlay = tb_overlay_classes() ) {
$classes[] = $overlay;
}
$classes = implode( ' ', $classes ); ?>
<div class="<?php echo $classes; ?>">
<?php
// Open link around staff members if enabled
if ( tb_get_mod( 'staff_links_enable', true ) ) : ?>
<a href="<?php tb_permalink(); ?>" title="<?php tb_esc_title(); ?>" rel="bookmark">
<?php endif; ?>
<?php echo $thumbnail; ?>
<?php
// Inside overlay HTML
tb_overlay( 'inside_link' ); ?>
<?php
// Close link around staff item if enabled
if ( tb_get_mod( 'staff_links_enable', true ) ) echo '</a>'; ?>
<?php
// Outside overlay HTML
tb_overlay( 'outside_link' ); ?>
</div><!-- .staff-entry-media -->