Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <div class="top-posts">
  2. <?php
  3. if (have_posts()) :
  4. while(have_posts()) : the_post();?>
  5. <div class="content">
  6. <?php the_post_thumbnail('archive'); ?>
  7. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  8. </div>
  9. <?php endwhile;?>
  10. <?php endif;?>
  11. </div>
  12.  
  13. <div class="primary-posts">
  14. <?php
  15. if (have_posts()) :
  16. while(have_posts()) : the_post();?>
  17. <h2><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a></h2>
  18. <?php endwhile;?>
  19. <?php endif;?>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement