Advertisement
Guest User

archive.php

a guest
May 6th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.92 KB | None | 0 0
  1. <?php
  2.     global $avia_config, $more;
  3.  
  4.     /*
  5.      * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
  6.      */
  7.      get_header();
  8.    
  9.        
  10.         $showheader = true;
  11.         if(avia_get_option('frontpage') && $blogpage_id = avia_get_option('blogpage'))
  12.         {
  13.             if(get_post_meta($blogpage_id, 'header', true) == 'no') $showheader = false;
  14.         }
  15.        
  16.         if($showheader)
  17.         {
  18.             echo avia_title(array('title' => avia_which_archive()));
  19.         }
  20.     ?>
  21.  
  22.         <div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
  23.  
  24.             <div class='container template-blog '>
  25.  
  26.                 <main class='content twelve units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
  27.  
  28.                     <div class="category-term-description">
  29.                         <?php echo term_description(); ?>
  30.                     </div>
  31.  
  32.                     <?php
  33.                     $blog_layout = apply_filters('avf_blog_style', avia_get_option('blog_style','multi-big'), 'archive');
  34.                     if($blog_layout == 'blog-grid')
  35.                     {
  36.                         global $posts;
  37.                         $post_ids = array();
  38.                         foreach($posts as $post) $post_ids[] = $post->ID;
  39.  
  40.                         if(!empty($post_ids))
  41.                         {
  42.                             $atts   = array(
  43.                                 'type' => 'grid',
  44.                                 'items' => get_option('posts_per_page'),
  45.                                 'columns' => 3,
  46.                                 'class' => 'avia-builder-el-no-sibling',
  47.                                 'paginate' => 'yes',
  48.                                 'use_main_query_pagination' => 'yes',
  49.                                 'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
  50.                             );
  51.  
  52.                             $blog = new avia_post_slider($atts);
  53.                             $blog->query_entries();
  54.                             echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";
  55.                         }
  56.                         else
  57.                         {
  58.                             get_template_part( 'includes/loop', 'index' );
  59.                         }
  60.                     }
  61.                     else
  62.                     {
  63.                         /* Run the loop to output the posts.
  64.                         * If you want to overload this in a child theme then include a file
  65.                         * called loop-index.php and that will be used instead.
  66.                         */
  67.  
  68.                         $more = 0;
  69.                         get_template_part( 'includes/loop', 'index' );
  70.                     }
  71.                     ?>
  72.  
  73.                 <!--end content-->
  74.                 </main>
  75.  
  76.             </div><!--end container-->
  77.  
  78.         </div><!-- close default .container_wrap element -->
  79.  
  80.  
  81.  
  82.  
  83. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement