Advertisement
Guest User

Untitled

a guest
Feb 19th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="container">
  4.  
  5. <div id="content">
  6.  
  7. <div id="main" <?php if(get_theme_mod('sp_home_layout') == 'full' || get_theme_mod('sp_home_layout') == 'grid-full') : ?>class="fullwidth"<?php else : ?>class="regular"<?php endif; ?>>
  8.  
  9. <?php if(get_theme_mod('sp_home_layout') == 'grid' || get_theme_mod('sp_home_layout') == 'grid-full') : ?><ul class="grid-layout"><?php endif; ?>
  10.  
  11. <?php $counter = 1; ?>
  12. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  13. <?php $counter++; ?>
  14. <?php if(get_theme_mod('sp_home_layout') == 'grid' || get_theme_mod('sp_home_layout') == 'grid-full') : ?>
  15. <?php get_template_part('content', 'grid'); ?>
  16. <?php else : ?>
  17. <?php get_template_part('content'); ?>
  18. <?php endif; ?>
  19.  
  20. <?php if($counter == 3) : ?>
  21.  
  22. [!!!!!!!!!!AD CODE HERE AD CODE HERE AD CODE HERE!!!!!!!!!!!!]
  23.  
  24. <?php endif; ?>
  25.  
  26. <?php endwhile; ?>
  27.  
  28. <?php if(get_theme_mod('sp_home_layout') == 'grid' || get_theme_mod('sp_home_layout') == 'grid-full') : ?></ul><?php endif; ?>
  29.  
  30. <?php solopine_pagination(); ?>
  31.  
  32. <?php endif; ?>
  33.  
  34. </div>
  35.  
  36.  
  37. <?php if(get_theme_mod('sp_home_layout') == 'full' || get_theme_mod('sp_home_layout') == 'grid-full') : else : ?><?php get_sidebar(); ?><?php endif; ?>
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement