File: /home/cafsindia/orthovijay.in/wp-content/themes/kallyas/archive.php
<?php if(! defined('ABSPATH')){ return; }
/**
* Template layout for ARCHIVES
* @package Kallyas
* @author Team Hogash
*/
get_header();
/*** USE THE NEW HEADER FUNCTION **/
//** Put the header with title and breadcrumb
$title = zn_archive_title();
WpkPageHelper::zn_get_subheader( array( 'title' => $title ) );
// Check the sidebar type
$current_post_type = get_post_type( $post->ID );
$exclude_post_type = array(
'zn_layout',
'znpb_template_mngr',
'attachment',
'product',
'post',
);
$sidebar_layout = 'archive_sidebar';
if ( ! in_array( $current_post_type, $exclude_post_type ) ) {
$sidebar_layout = $current_post_type . '_archive_sidebar';
}
// Check to see if the page has a sidebar or not
$main_class = zn_get_sidebar_class($sidebar_layout);
if( strpos( $main_class , 'right_sidebar' ) !== false || strpos( $main_class , 'left_sidebar' ) !== false ) { $zn_config['sidebar'] = true; } else { $zn_config['sidebar'] = false; }
$sidebar_size = zget_option( 'sidebar_size', 'unlimited_sidebars', false, 3 );
$content_size = 12 - (int)$sidebar_size;
$zn_config['size'] = $zn_config['sidebar'] ? 'col-sm-8 col-md-'.$content_size : 'col-sm-12';
?>
<section id="content" class="site-content" >
<div class="container">
<div class="row">
<div id="th-content-archive" class="<?php echo esc_attr( $main_class ); ?>" <?php echo WpkPageHelper::zn_schema_markup('main'); ?>>
<?php
$blog_layout = zget_option( 'blog_layout', 'blog_options', false, 'def_classic' );
$columns = zget_option( 'blog_style_layout', 'blog_options', false, '1' );
if ( $blog_layout == 'cols' && in_array( $columns, array(1, 2, 3, 4, 5, 6) ) ) {
get_template_part( 'blog', 'columns' );
}
elseif ( $blog_layout == 'def_classic' || $blog_layout == 'def_modern' ) {
get_template_part( 'blog', 'default' );
}
?>
</div><!--// #th-content-archive -->
<?php get_sidebar(); ?>
</div>
</div>
</section><!--// #content -->
<?php get_footer();