Guest User

Untitled

a guest
Dec 15th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="module">
  4. <?php get_template_part('inc/parts/sidebar'); ?>
  5. <div class="content">
  6.  
  7.  
  8. <header><h1><?php printf( __( '%s', 'mundothemes' ), '' . single_tag_title( '', false ) . '' ); ?></h1></header>
  9. <div class="<?php if(is_tax('dtquality')) { echo 'slider'; } else { echo 'items'; } ?>">
  10. <?php if (have_posts()) :while (have_posts()) : the_post(); ?>
  11. <?php if(is_tax('dtquality')) { get_template_part('inc/parts/item_b'); } else { get_template_part('inc/parts/item'); } ?>
  12. <?php endwhile; endif; ?>
  13. </div>
  14. <?php if (function_exists("pagination")) { pagination($additional_loop->max_num_pages); } ?>
  15. </div>
  16. </div>
  17. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment