Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. query_posts('posts_per_page');
  4. while(have_posts()) : the_post(); ?>
  5. <article>
  6. <h1><?php the_title(); ?></h1>
  7. <?php the_content(''); ?>
  8. </article>
  9.  
  10. <?php endwhile; wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement