Advertisement
alchymyth

Untitled

Oct 31st, 2011
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php rewind_posts(); ?>
  2.  
  3. <?php
  4.  
  5. query_posts( array( 'cat' => 61, 'paged' => get_query_var('paged') ) );
  6.  
  7. while ( have_posts() ) : the_post();
  8.  
  9. endwhile;
  10.  
  11. ?>
  12.  
  13. <?php if( empty($option['trt_lay'])) { ?>
  14. <?php get_template_part('layout1');?>
  15. <?php }?>
  16. <?php if($option['trt_lay']== "Layout 1") { ?>
  17. <?php get_template_part('layout1');?>
  18. <?php }?>
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement