groups

name language licence
Display a Pages Menu in your Sidebar PHP BSD
Display an External RSS Feed PHP BSD
Untitled Snippet Other Other
Untitled Snippet Other Other
maeghan.me Other Other
Untitled Snippet Other Other
Untitled Snippet Other Other
Display Recent Posts PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



language: PHP
licence: BSD

Display Recent Posts

options: view full snippetsend to code collector
Display Recent Posts

Here is the code you need to display the most recent 5 posts:


<?php query_posts('showposts=5'); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
	
(Continues...)