????

Your IP : 3.145.50.254


Current Path : /home2/morganrand/backup.morganrand.com/wp-content/themes/wanderfuls/
Upload File :
Current File : /home2/morganrand/backup.morganrand.com/wp-content/themes/wanderfuls/taxonomy-staff_category.php

<?php
/**
 * The template for displaying Staff Category archives
 *
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Templates
 */

get_header(); ?>

    <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 if ( have_posts( ) ) : ?>

                        <div id="staff-entries" class="<?php echo tb_get_staff_wrap_classes(); ?>">

                            <?php $tb_count = 0; ?>

                            <?php while ( have_posts() ) : the_post(); ?>

                                <?php $tb_count++; ?>

                                <?php get_template_part( 'partials/staff/staff-entry' ); ?>

                                <?php if ( $tb_count == tb_staff_archive_columns() ) $tb_count=0; ?>

                            <?php endwhile; ?>

                        </div><!-- #staff-entries -->

                        <?php tb_pagination(); ?>

                    <?php else : ?>

                        <article class="clr"><?php _e( 'No Posts found.', 'tb' ); ?></article>

                    <?php endif; ?>

                    <?php tb_hook_content_bottom(); ?>

                </div><!-- #content -->

                <?php tb_hook_content_after(); ?>

            </div><!-- #primary -->

            <?php tb_hook_primary_after(); ?>

    </div><!-- #content-wrap -->

<?php get_footer(); ?>