????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/overlays/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/overlays/slideup-title-white.php

<?php
/**
 * Slide Up Title White 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;
} ?>

<div class="overlay-slideup-title overlay-hide white clr theme-overlay">
	<span class="title">
		<?php if ( 'staff' == get_post_type() ) {
			echo get_post_meta( get_the_ID(), 'tb_staff_position', true );
		} else {
			the_title();
		} ?>
	</span>
</div>