Advertisement
Guest User

Untitled

a guest
Jul 18th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Quiz
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <div id="wrap">
  9. <div id="content" class="fullwidth">
  10.  
  11. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12.  
  13. <div id="page-<?php the_ID(); ?>" <?php post_class(); ?>>
  14.  
  15. <h2><?php the_title(); ?></h2>
  16. <?php edit_post_link(__( 'Edit', 'themezee_lang' )); ?>
  17.  
  18. <div class="entry">
  19. <?php the_post_thumbnail('medium', array('class' => 'alignleft')); ?>
  20. <?php the_content(); ?>
  21. <div class="clear"></div>
  22. <?php wp_link_pages(); ?>
  23. </div>
  24.  
  25.  
  26. </div>
  27.  
  28. <?php endwhile; ?>
  29.  
  30. <?php endif; ?>
  31.  
  32. </div>
  33. </div>
  34.  
  35. <?php wp_footer(); ?>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement