/**
 * The template for displaying Staff Categories
 *
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Total
 * @since Total 1.0
 */
get_header();
?>

    <?php 
// Display the page header - see functions/page-header.php
wpex_page_header();
?>

	<div id="content-wrap" class="container clr <?php 
echo wpex_get_post_layout_class();
?>
">
		<?php 
if (have_posts()) {
    ?>
			<section id="primary" class="content-area clr">
				<div id="content" class="site-content clr" role="main">
					<div id="staff-entries" class="clr <?php 
    if (wpex_option('staff_pagination_style', 'infinite_scroll') == 'infinite_scroll') {
        echo 'infinite-scroll-wrap';
    }
Example #2
0
function wpex_display_page_header()
{
    wpex_page_header();
}