Thanks for the help.
I've made changes, here's the current code:
<?php /* Template Name: News
*/ ?>
<?php get_header();?>
<div id="content">
<?php query_posts('showposts=-1&cat=73'); ?>
<!-- primary content start -->
<?php genki_announcement() ?>
<?php if ($posts) {
if ( get_settings('aquafluid_asideid')!='') $AsideId = get_settings('aquafluid_asideid');
function stupid_hack($str)
{
return preg_replace('|</ul>\s*<ul class="asides">|', '', $str);
}
ob_start('stupid_hack');
foreach($posts as $post)
{
the_post();
?>
<?php if ( in_category($AsideId) && !is_single() ) : ?>
<ul class="asides">
<li id="p<?php the_ID(); ?>">
<?php echo wptexturize($post->post_content); ?>
<br />
<?php comments_popup_link('(0)', '(1)','(%)')?> | <a href="<?php the_permalink(); ?>" title="Permalink: <?php echo wptexturize(strip_tags(stripslashes($post->post_title), '')); ?>" rel="bookmark">#</a> <?php edit_post_link('(edit)'); ?>
</li>
</ul>
<?php else: // If it's a regular post or a permalink page ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post-info">
<b><span class="post-comments"><?php comments_popup_link('0 comments', '1 comment', '% comments','','comments off'); ?></b></span>
<b><em class="date"><?php the_time('l d M Y'); ?></em></b> | Posted By
<em class="user"><?php the_author_posts_link() ?></em> |
<em class="cat"><?php the_category(', ') ?></em> <?php edit_post_link(); ?>
<div class="post-content"></div>
<?php the_content('Continue Reading »'); ?>
<?php wp_link_pages();?>
<p class="post-tags">
<?php if (function_exists('the_tags')) the_tags('Tags: ', ', ', '<br />'); ?>
</p><a class="yaction-link-bookmark"></a>
<a class="yaction-link-send"></a>
<a class="yaction-link-blog"></a>
<a class="yaction-link-print"></a>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endif; // end if in category ?>
<?php
}
} // end if (posts)
else
{
echo '<p>Sorry, No Posts matched your criteria.</p>';
}
?>
<p align="center"><?php posts_nav_link(' - ','« Prev','Next »') ?></p>
<!-- primary content end -->
</div>
<?php get_sidebar();?>
<?php get_footer();?>
Now the static page only displays the latest post in that category. I've played around with it and can't get it... I've read through the codex a bit and am not understanding why it's doing this.
I feel like I'm almost there...?