Current File : //home/quantums/bodyguardslosangeles.net/wp-content/themes/seosight/archive.php
<?php
/**
 * The template for displaying archive pages.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Seosight
 */

get_header();
$queried_object = get_queried_object();
$layout         = seosight_sidebar_conf();
$main_class     = 'full' !== $layout['position'] ? 'site-main content-main-sidebar' : 'site-main content-main-full';
set_query_var( 'post_excerpt', get_option( 'rss_use_excerpt' ) );
set_query_var( 'post_layout', $layout['position'] );
?>

	<div id="primary" class="container">
		<div class="row section-padding">
			<div class="<?php echo esc_attr( $layout['content-classes'] ) ?>">
				<main id="main" class="<?php echo esc_attr( $main_class ) ?>">

					<?php if ( is_author() ) {
						get_template_part( 'template-parts/author', 'box' );
					} ?>

					<?php
					if ( have_posts() ) :

						if ( is_home() && ! is_front_page() ) : ?>
							<?php
						endif;

						if ( is_tax() && 'fw-portfolio-category' === $queried_object->taxonomy ) {
							set_query_var('portfolio-item-grid-size',4);
							?>
							<div class="row sorting-container" data-layout="packery" id="portfolio-loop">
								<?php while ( have_posts() ) : the_post();
									get_template_part( 'template-parts/portfolio/loop', 'item' );
								endwhile;
								?>
							</div>

							<?php
						} else {
							/* Start the Loop */
							while ( have_posts() ) : the_post();

								$format = get_post_format();
								if ( false === $format ) {
									$format = 'standard';
								}

								/*
								 * Include the Post-Format-specific template for the content.
								 * If you want to override this in a child theme, then include a file
								 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
								 */
								get_template_part( 'post-format/post', $format );

							endwhile;
						}


						seosight_paging_nav();

					else :

						get_template_part( 'template-parts/content', 'none' );

					endif; ?>

				</main><!-- #main -->
			</div>
			<?php if ( 'full' !== $layout['position'] ) { ?>
				<div class="<?php echo esc_attr( $layout['sidebar-classes'] ) ?>">
					<?php get_sidebar(); ?>
				</div>
			<?php } ?>
		</div><!-- #row -->
	</div><!-- #primary -->

<?php
get_footer();