????
| Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/staff/ |
| Current File : /home2/morganrand/www/wp-content/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 -->