| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/web20/web/wp-content/themes/dealsdot/ |
Upload File : |
<?php
/**
* archive.php
* @package WordPress
* @subpackage Dealsdot
* @since Dealsdot 1.0
*
*/
?>
<?php get_header(); ?>
<div class="breadcrumb product-search">
<div class="container">
<div class="breadcrumb-inner">
<h2><?php the_archive_title(); ?></h2>
</div>
</div>
</div>
<div class="body-content blog-page outer-top-ts">
<div class="container">
<div class="row">
<?php if( get_theme_mod( 'dealsdot_blog_layout' ) == 'left-sidebar') { ?>
<div class="col-xs-12 col-sm-12 col-md-3 sidebar">
<div class="sidebar-module-container">
<?php if ( is_active_sidebar( 'blog-sidebar' ) ) { ?>
<?php dynamic_sidebar( 'blog-sidebar' ); ?>
<?php } ?>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-9 klb-blog-list">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'post-format/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php get_template_part( 'post-format/pagination' ); ?>
<?php else : ?>
<h2><?php esc_html_e('No Posts Found', 'dealsdot') ?></h2>
<?php endif; ?>
</div>
<?php } elseif( get_theme_mod( 'dealsdot_blog_layout' ) == 'full-width') { ?>
<div class="col-md-10 col-md-offset-1 klb-blog-list">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'post-format/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php get_template_part( 'post-format/pagination' ); ?>
<?php else : ?>
<h2><?php esc_html_e('No Posts Found', 'dealsdot') ?></h2>
<?php endif; ?>
</div>
<?php } else { ?>
<?php if ( is_active_sidebar( 'blog-sidebar' ) ) { ?>
<div class="col-xs-12 col-sm-12 col-md-9 klb-blog-list">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'post-format/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php get_template_part( 'post-format/pagination' ); ?>
<?php else : ?>
<h2><?php esc_html_e('No Posts Found', 'dealsdot') ?></h2>
<?php endif; ?>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 sidebar klb-sidebar">
<div class="sidebar-module-container">
<?php if ( is_active_sidebar( 'blog-sidebar' ) ) { ?>
<?php dynamic_sidebar( 'blog-sidebar' ); ?>
<?php } ?>
</div>
</div>
<?php } else { ?>
<div class="col-md-10 col-md-offset-1 klb-blog-list">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part( 'post-format/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php get_template_part( 'post-format/pagination' ); ?>
<?php else : ?>
<h2><?php esc_html_e('No Posts Found', 'dealsdot') ?></h2>
<?php endif; ?>
</div>
<?php } ?>
<?php } ?>
</div>
</div>
</div>
<?php get_footer(); ?>