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

About this user

ana m. http://www.fabricadecosas.org

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Display recent posts from a category

// 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>.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS