Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Display recent posts from a category (See related posts)

// No need of a plugin to do this

<ul>
 <?php
 global $post;
 $myposts = get_posts('numberposts=5&category=4');
 foreach($myposts as $post) :
 setup_postdata($post);
 ?>
 <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
 <?php endforeach; ?>
</ul>.

You need to create an account or log in to post comments to this site.


Click here to browse all 4857 code snippets

Related Posts