????

Your IP : 216.73.216.174


Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/
Upload File :
Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/staff-entry-title.php

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

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

<h2 class="staff-entry-title entry-title">
	<?php
	// Display staff title with links
	if ( tb_get_mod( 'staff_links_enable', true ) ) : ?>
		<a href="<?php tb_permalink(); ?>" title="<?php tb_esc_title(); ?>"><?php the_title(); ?></a>
	<?php
	// Display simple title without links
	else : ?>
		<?php the_title(); ?>
	<?php endif; ?>
</h2><!-- .staff-entry-title -->