????

Your IP : 3.144.235.195


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

<?php
/**
 * The template used for single portfolio posts.
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Templates
 */

get_header(); ?>

	<?php
	// If portfolio is disabled use single-other.php template instead
	if ( ! TB_PORTFOLIO_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/portfolio/portfolio-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();?>