12-06-2007, 04:07 PM
|
#30 (permalink)
|
|
The Acquainted
Join Date: Oct 2007
Location: Newcastle, UK
Posts: 113
Thanks: 3
|
I found some code that does the same thing in about 6 lines lol:
Code:
<?php
$myposts = get_posts('numberposts=5&offset=0&category=3');
foreach($myposts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
|
|
|