<?php
$minicat1 = get_option('remedy_mini_category1');
$my_query = new WP_Query('cat=7&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
?>
<div class="hentry">
<?php $homethumb = get_post_meta($post->ID,'homethumb', true); ?>
<img src="<?php echo p75GetThumbnail($post->ID); ?>" width="100" height="60" alt="" />
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="categ"><?php the_category(', '); ?> </div>
<?php the_excerpt(); ?>
</div>
<div class="meta">
<div class="comm"><?php comments_popup_link('ADD COMMENTS', '1 COMMENT', '% COMMENTS'); ?></div>
<div class="postmore"> <a href="<?php the_permalink() ?>">Read More</a></div>
</div>
<?php endwhile; ?>
</div>
<div class="minipost">
<?php
$minicat2 = get_option('remedy_mini_category2');
$my_query = new WP_Query('cat=13&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
?>
<div class="hentry">
<?php $homethumb = get_post_meta($post->ID,'homethumb', true); ?>
<img src="<?php echo p75GetThumbnail($post->ID); ?>" width="100" height="60" alt="" />
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="categ"><?php the_category(', '); ?> </div>
<?php the_excerpt(); ?>
</div>
<div class="meta">
<div class="comm"><?php comments_popup_link('ADD COMMENTS', '1 COMMENT', '% COMMENTS'); ?></div>
<div class="postmore"> <a href="<?php the_permalink() ?>">Read More</a></div>
</div>
<?php endwhile; ?>
</div>