any ideas?
Here is the code that i have:
<?php get_header(); ?>
<div id=”main”>
<div id=”contentwrapper”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”topPost”>
THIS IS THE TOP OF THE DESCRIPTION
<h2 class=”topTitle”>“><?php the_title(); ?></h2>
<p class=”topMeta”>by <?php the_author_posts_link(); ?> on <?php the_time(‘M.d, Y’) ?>, under <?php the_category(‘, ‘); ?></p>
<?php if(function_exists(‘the_ratings’)) { the_ratings(); } ?> <?php userphoto_the_author_thumbnail() ?>
<div class=”topContent”><?php the_content(‘(continue reading…)’); ?></div>
<span class=”topTags”><?php the_tags(‘:‘, ‘, ‘, ”); ?></span>
<div class=”cleared”></div>
</div> <!– Closes topPost –>
would this be done by using RSS feeds of each category?