????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/overlays/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/overlays/title-category-visible.php

<?php
/**
 * Title Category Visible Overlay
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Partials
 * @version 3.0.0
 */

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

// Only used for inside position
if ( 'inside_link' != $position ) {
	return;
}

// Get category taxonomy for current post type
$taxonomy = tb_get_post_type_cat_tax();

// Get terms
if ( $taxonomy ) {
	$terms = tb_list_post_terms( $taxonomy, $show_links = false, $echo = false );
} ?>

<div class="overlay-title-category-visible theme-overlay">
	<div class="overlay-title-category-visible-inner clr">
		<div class="overlay-title-category-visible-text clr">
			<div class="overlay-title-category-visible-title">
				<?php the_title(); ?>
			</div><!-- .overlay-title-category-visible-title -->
			<?php if ( ! empty( $terms ) ) : ?>
				<div class="overlay-title-category-visible-category">
					<?php echo $terms; ?>
				</div><!-- .overlay-title-category-visible-category -->
			<?php endif; ?>
		</div><!-- .overlay-title-category-visible-text -->
	</div><!-- .overlay-title-category-visible-inner -->
</div><!-- .overlay-title-category-visible -->