This is the full loop:
<div id=”blogs”>
<?php query_posts(‘category_name=Uncategorized&showposts=2’); ?>
<?php while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; ?>
<div class=”post”>
<font size=3, face=”Arial Italic”>
<h2 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h2>
</font>
<div class=”small”>
<font size=1><?php the_time(“F j, Y g:i a”) ?></font>
</div>
<div class=”article”>
<?php the_content(‘Read the rest of this entry’); ?>
</div>
<font size=1><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?><?php edit_post_link(‘Edit’,’ | ‘,”); ?></font>
<!– <?php trackback_rdf(); ?> –>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><font size=1><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
</font></div>
</div>
This is all showing on a page outside of WP. I have it set up so it sends it to my index on another url, but for some reason it won’t let me tell it how many posts to show.
I did get the plugin, but it seemed to cause even more problems for me.