Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $args = array(
- 'posts_per_page'=> 2
- );
- query_post($args); if(have_posts()) { while(have_posts()) { the_post();
- ?>
- <h1><?php the_title(); ?></h1>
- <?php the_content(); ?>
- <?php } } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement