Advertisement
canutedechou

Untitled

May 26th, 2011
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. $args = array( 'posts_per_page' => 5 );
  3. $lastposts = get_posts( $args );
  4. foreach($lastposts as $post) : setup_postdata($post); ?>
  5. <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  6. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement