HEX
Server: Apache/2.2.22
System: Linux server1.blueharbor.com 3.10.0-1160.90.1.vz7.200.7 #1 SMP Wed Jul 12 12:00:44 MSK 2023 x86_64
User: locglobe (1004)
PHP: 5.6.37
Disabled: NONE
Upload Files
File: /home/locglobe/public_html/wp-content/themes/writers/archive.php
<?php
/**
 * The template for displaying archive pages.
 *
 * 
 * Please browse readme.txt for credits and forking information
 *
 * @package writers
 */

get_header(); ?>
<div class="container">
	<div class="row">
		

		<?php if ( have_posts() ) : ?>

			<header class="archive-page-header">
				<?php						
				the_archive_title( '<h3 class="archive-page-title">', '</h3>' );
				the_archive_description ( '<div class="taxonomy-description">', '</div>' )
				?>
			</header><!-- .page-header -->

			<div id="primary" class="col-md-9 content-area">
				<main id="main" class="site-main" role="main">

					<?php /* Start the Loop */ ?>
					<?php while ( have_posts() ) : the_post(); ?>

						<?php

								/*
								 * 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( 'template-parts/content','excerpt');

								?>

							<?php endwhile; ?>

							<?php writers_posts_navigation(); ?>

						<?php else : ?>

							<?php get_template_part( 'template-parts/content', 'none' ); ?>

						<?php endif; ?>

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

				<?php get_sidebar('sidebar-1'); ?>			

			</div> <!--.row-->            
		</div><!--.container-->
		<?php get_footer(); ?>