Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div>
  3.    !Testing!
  4.    <?php if ( have_posts() ) : ?>
  5.       <?php while ( have_posts() ) : ?>
  6.          <?php the_post(); ?>
  7.  
  8.          <h2><?php the_title(); ?></h2>
  9.          <p><?php the_content(); ?></p>
  10.       <?php endwhile; ?>
  11.    <?php endif; ?>
  12. </div>
  13. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement