groups

name language licence
Display a Pages Menu in your Sidebar PHP BSD
Display an External RSS Feed PHP BSD
Display Recent Posts PHP BSD
Display Blogroll Links PHP BSD
Display Archives in a Drop-Down Box PHP BSD
Display PHP on a Single Page PHP BSD
TINYURL ON EVERY WORDPRESS-POST PHP BSD
Display an External RSS Feed PHP BSD

< 1 2 3 4 5 6 7 8 9 >



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...)