Advertisement
Guest User

single-php

a guest
May 6th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php get_header() ?>
  2.  
  3. <?php if(have_posts()):while(have_posts()):the_post(); ?>
  4.  
  5. <h2><?php the_title() ?></h2>
  6. <div class="article_section">
  7. <?php the_content(); ?>
  8. </div>
  9. <div class="article_footer"><p><?php the_category(' '); ?>|<?php the_time('Y.m.d') ?></p></div>
  10.  
  11. <?php endwhile; endif; ?>
  12.  
  13. <?php get_footer() ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement