So I am currently using the following code in my sidebar.php file:
<?php if (is_category(8) || in_category(8)) { ?>
<div id="subnav">
<?php $catposts=get_posts('cat=8', 'numberposts =0');
if ($catposts) {
foreach($catposts as $post) {
setup_postdata($post); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php }
}
?>
</div>
<?php } ?>
It's supposed to pull the titles of all the posts in that category and list them as links. The problem is that it is limiting it to only the 5 most recent. If anyone has any idea why that might be it would be greatly appreciated.
Thank you.