Advertisement
alchymyth

Untitled

Feb 14th, 2012
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. get_header();
  3. if (have_posts()) :
  4.  
  5. while (have_posts()) : the_post();
  6. if(is_page()){
  7. the_content();
  8. }else{
  9. echo "<h1>";
  10. single_post_title ( $prefix = '', $display = true );
  11. echo "</h1>";
  12. echo "<h2>";
  13. the_time('F jS, Y');
  14. echo "</h2>";
  15. the_content();
  16. }
  17. endwhile;
  18. endif;
  19. get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement