Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php $the_query = new WP_Query('p=INT'); ?>
  2. <?php while ($the_query->have_posts() ) : $the_query->the_post(); ?>
  3. <h1><?php the_title(); ?></h1>
  4. <?php the_content(); ?>
  5. <?php edit_post_link(__('Edit')); ?>
  6. <?php endwhile; ?>
  7. <?php wp_reset_postdata();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement