Guest User

Untitled

a guest
Jun 14th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <aside>
  3. <section class="tagcloud">
  4. <h1>Tags</h1>
  5. <?php
  6. wp_tag_cloud(array(
  7. 'smallest' => 12,
  8. 'largest' => 20,
  9. 'format' => 'list'
  10. ));
  11. ?>
  12. </section>
  13. </aside>
  14.  
  15. <section class="content">
  16. <?php
  17. while(have_posts()) {
  18. the_post();
  19. include(TEMPLATEPATH . '/blogpost.php');
  20. }
  21. ?>
  22. </section>
  23. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment