Your IP : 216.73.216.95


Current Path : /var/test/www/mainsite/wp-content/themes/alone/
Upload File :
Current File : /var/test/www/mainsite/wp-content/themes/alone/single-bg_team.php

<?php get_header(); 
alone_title_bar();
$alone_sidebar_position = function_exists( 'fw_ext_sidebars_get_current_position' ) ? fw_ext_sidebars_get_current_position() : 'right';
$alone_general_posts_options = alone_general_posts_options();
?>

	<div class="bg-single-wrap bg-single-team">
		<div class="bg-container">
			<div class="bg-row">
				<?php while ( have_posts() ) : the_post();
					$layout = get_post_meta(get_the_ID(), 'bg_team_single_layout', true);
					$layout = str_replace('_', '-', $layout);
					
					$atts = array(
						'id' => get_the_ID(),
						'post_type' => get_post_type(),
					);
					
					?>
					<div class="bg-single bg-single-<?php echo $layout; ?>">
						<?php _render_view(BG_DIR_PATH . 'templates/layout/'.$layout.'.php', array('atts' => $atts), false); ?>
						<div class="bg-clear"></div>
					</div>
				
				<?php endwhile; ?>
			</div>
		</div>
	</div>

<?php get_footer(); ?>