68 lines
2.8 KiB
PHP
68 lines
2.8 KiB
PHP
<?php get_header(); ?>
|
|
<?php
|
|
// Check and get Sidebar Class
|
|
$sidebar = get_option(THEME_SHORT_NAME.'_search_archive_sidebar','no-sidebar');
|
|
$sidebar_reverse = ($sidebar == 'both-sidebar-reverse' ||
|
|
$sidebar == 'left-sidebar' )? 'reverse-sidebar': 'normal-sidebar';
|
|
$sidebar_array = gdl_get_sidebar_size( $sidebar );
|
|
?>
|
|
<div class="page-wrapper <?php echo $sidebar_reverse; ?> archive-page <?php echo $sidebar_array['sidebar_class']; ?>">
|
|
<?php
|
|
$left_sidebar = get_option(THEME_SHORT_NAME.'_search_archive_left_sidebar');
|
|
$right_sidebar = get_option(THEME_SHORT_NAME.'_search_archive_right_sidebar');
|
|
|
|
echo '<div class="row gdl-page-row-wrapper">';
|
|
echo '<div class="gdl-page-left mb0 ' . $sidebar_array['page_left_class'] . '">';
|
|
|
|
echo '<div class="row">';
|
|
echo '<div class="gdl-page-item mb0 pb20 ' . $sidebar_array['page_item_class'] . '">';
|
|
|
|
if( !is_tax('portfolio-category') && !is_tax('portfolio-tag') ){
|
|
|
|
// blog archive
|
|
$item_type = get_option(THEME_SHORT_NAME.'_search_archive_item_size', '1/1 Full Thumbnail');
|
|
$num_excerpt = get_option(THEME_SHORT_NAME.'_search_archive_num_excerpt', 285);
|
|
$full_content = get_option(THEME_SHORT_NAME.'_search_archive_full_blog_content', 'No');
|
|
|
|
global $blog_div_size_num_class;
|
|
$item_class = $blog_div_size_num_class[$item_type]['class'];
|
|
$item_size = $blog_div_size_num_class[$item_type][$sidebar_type];
|
|
|
|
|
|
echo '<div id="blog-item-holder" class="blog-item-holder">';
|
|
if( $item_type == '1/4 Blog Grid' || $item_type == '1/3 Blog Grid' ||
|
|
$item_type == '1/2 Blog Grid' || $item_type == '1/1 Blog Grid'){
|
|
print_blog_grid($item_class, $item_size, $num_excerpt, $full_content, $item_type);
|
|
}else if( $item_type == '1/1 Medium Thumbnail' ){
|
|
print_blog_medium($item_class, $item_size, $num_excerpt, $full_content);
|
|
}else if( $item_type == '1/1 Blog List' ){
|
|
print_blog_list($item_class, $item_size);
|
|
}
|
|
echo '</div>'; // blog-item-holder
|
|
}else{
|
|
|
|
// portfolio archive
|
|
$port_size = get_option(THEME_SHORT_NAME.'_portfolio_archive_size' ,'1/4');
|
|
$show_title = (get_option(THEME_SHORT_NAME.'_portfolio_archive_show_title' ,'Yes') == "Yes")? true: false;
|
|
$show_tag = (get_option(THEME_SHORT_NAME.'_portfolio_archive_show_tags' ,'Yes') == "Yes")? true: false;
|
|
print_normal_portfolio($port_size, $show_title, $show_tag);
|
|
}
|
|
|
|
echo '<div class="clear"></div>';
|
|
pagination();
|
|
|
|
echo "</div>"; // end of gdl-page-item
|
|
|
|
get_sidebar('left');
|
|
echo '<div class="clear"></div>';
|
|
echo "</div>"; // row
|
|
echo "</div>"; // gdl-page-left
|
|
|
|
get_sidebar('right');
|
|
echo '<div class="clear"></div>';
|
|
echo "</div>"; // row
|
|
?>
|
|
<div class="clear"></div>
|
|
</div> <!-- page wrapper -->
|
|
<?php get_footer(); ?>
|