This is what I did to the Loop (try not to be too upset at the mangled mess):
<?php require_once(“/home/lethacov/public_html/wordpress/wp-config.php”); // Change this for your path to wp-config.php file ?>
<div id=”blogs”>
<?php query_posts(‘showposts=1’); ?>
<?php while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; ?>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”>“><?php the_title(); ?></h2>
<div class=”small”>
<?php the_time(“l”) ?><BR><?php the_time(“F j, Y g:i a”) ?>
</div>
<div class=”article”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<p class=”postmetadata alt”>Posted in <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?><?php edit_post_link(‘Edit’,’ | ‘,”); ?>
<!– <?php trackback_rdf(); ?> –>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div>
</div> <!– end blogs –>
I then placed that on the index.htm of the main site (not wp). I’m starting to think that where I placed the Loop is really dynamic template. I’m hoping there is some way to tell the loop to only display if it is the top page.
I hope I didn’t confuse anyone….if you can’t tell, I’m really new to this and kinda winging it (and pretty much falling out of the sky)
Thanks ??