Хлебные крошки и описание рубрики выводит после каждой записи, помогите исправить

archive.php

<?php
/**
 * The template for displaying archive pages.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package aquarella
 */

get_header(); ?>

<?php //Layout Variables
$layout_style = get_theme_mod( 'layout_custom', 'sidebar_right' );

if ( $layout_style == 'sidebar_right' ) : 
	$layout_content_class = 'col-sm-8';
	$layout_sidebar_class = 'col-sm-4';

elseif ( $layout_style == 'sidebar_left' ) :

	$layout_content_class = 'col-sm-8 col-sm-push-4';
	$layout_sidebar_class = 'col-sm-4 col-sm-pull-8';

elseif ( $layout_style == 'no_sidebar' ) :
	$layout_content_class = '';
	$layout_sidebar_class = 'no-sidebar';
endif; ?>

	<!-- == CONTENT AREA == -->
	<div id="primary" class="content-area">
		<div class="container">
			<!-- row -->
			<div class="row">
				<!-- col -->
				<div class="<?php echo $layout_content_class; ?>">
					<!-- main -->
					<main id="main" class="site-main" role="main">
						<?php
						if ( have_posts() ) : ?>

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

								/*
								 * 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', get_post_format() );

							endwhile;

							the_posts_navigation();

						else :

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

						endif; ?>

					</main>
					<!-- /main -->
				</div>
				<!-- /col -->
				<!-- col -->
				<div class="<?php echo $layout_sidebar_class; ?>">
					<?php get_sidebar(); ?>
				</div>
				<!-- /col -->
			</div>
			<!-- /row -->
		</div>        
	</div>
	<!-- == /CONTENT AREA == -->

<?php get_footer(); ?>

content.php

<?php
/**
 * Template part for displaying posts.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package aquarella
 */

?>

<?php
if (!is_home() ) { ?>
<div class="post-element post-element-header2"><?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?></div>

<?php } ?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<div class="post-element">

		<!-- Featured image -->
		<?php if ( has_post_thumbnail() ) { ?>
		<div class="post-featured-image">

				<?php the_post_thumbnail('aquarella_imgsize_1', array('class' => ''));?>

		</div>                
		<?php } ?>
		<!-- / Featured-image -->

		<header class="entry-header">
			<?php if ( 'post' === get_post_type() ) : ?>
			<div class="entry-meta">
				<span class="entry-meta-content"><?php aquarella_posted_on(); ?></span>
			</div><!-- .entry-meta -->
			<div class="post-has-ct"></div>
			<?php
			endif; ?>

			<?php if ( is_single() ) {
					the_title( '<h1 class="entry-title">', '</h1>' );
				} else {
					the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
			} ?>
		</header><!-- .entry-header -->
<hr>
		<div class="entry-content">
			<?php if ( is_single() ) { ?>

				<?php
					the_content( sprintf(
						/* translators: %s: Name of current post. */
						wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'aquarella-lite' ), array( 'span' => array( 'class' => array() ) ) ),
						the_title( '<span class="screen-reader-text">"', '"</span>', false )
					) );

					wp_link_pages( array(
						'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'aquarella-lite' ),
						'after'  => '</div>',
					) );
				?>

			<?php    } else { ?>

					<?php the_excerpt();?>

					<a href="<?php the_permalink(); ?>" class="btn btn-special">Подробнее</a>

			<?php } ?>

		</div><!-- .entry-content -->

		<footer class="entry-footer">
			<?php aquarella_entry_footer(); ?>
		</footer><!-- .entry-footer -->

	</div>    
</article><!-- #post-## -->

<?php
if (is_category() ) { ?>
							<header class="page-header">

								<div class="post-element post-element-header">

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