Christopher Clarke
By: a guest | Aug 29th, 2009 | Syntax:
PHP | Size: 0.23 KB | Hits: 56 | Expires: Never
<?php
global $post;
$myposts = get_posts('numberposts=-1&category=5&order=ASC&orderby=ID');
foreach($myposts as $post) :
?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
<?php endforeach; ?></p>