Advertisement
tcelestino

Loop limitado 2 post

Jul 18th, 2012
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.     $args = array(
  3.             'posts_per_page'=> 2
  4.     );
  5.  
  6.     query_post($args); if(have_posts()) { while(have_posts()) { the_post();
  7. ?>
  8.  
  9.     <h1><?php the_title(); ?></h1>
  10.     <?php the_content(); ?>
  11.  
  12. <?php } } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement