????
| Current Path : /home2/morganrand/backup.morganrand.com/wp-content/themes/wanderfuls/ |
| Current File : /home2/morganrand/backup.morganrand.com/wp-content/themes/wanderfuls/single-staff.php |
<?php
/**
* The template used for single staff posts.
*
* @package Wanderfuls WordPress Theme
* @subpackage Templates
*/
get_header(); ?>
<?php
// If staff is disabled use single-other.php template instead
if ( ! TB_STAFF_IS_ACTIVE ) {
get_template_part( 'single-other' );
return;
} ?>
<div id="content-wrap" class="container clr">
<?php tb_hook_primary_before(); ?>
<div id="primary" class="content-area clr">
<?php tb_hook_content_before(); ?>
<div id="content" class="site-content clr">
<?php tb_hook_content_top(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'partials/staff/staff-single-layout' ); ?>
<?php endwhile; ?>
<?php tb_hook_content_bottom(); ?>
</div><!-- #content -->
<?php tb_hook_content_after(); ?>
</div><!-- #primary -->
<?php tb_hook_primary_after(); ?>
</div><!-- .container -->
<?php get_footer();?>