1. correct
2. I want on my main index page, a mission statement (just a few paragraphs of text), followed up by my 5 posts, but only in a excerpt form - but when you would click on the link to view the full post, you see only the full post, not the mission statement that exists on that page. Is that possible with some kind of simple conditional statement or have i dug myself into a hole I can't get out of?
3. I didn't realize this was a feature specific to the theming system, that's why I'm hear asking this. I'd rather not have to get into themes just to get this working - but if I have no choice, I have no choice.
Here's the loop that I have on my index page, if it's any help in getting me closer to my solution:
<?php
/* Short and sweet */
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
?>
<?php if (have_posts()) : ?>
<h3><span style="color:#9eb1c4;">Home »</span> <span style="color:#22517e;">News</span></h3><br>
<?php while(have_posts()) : the_post(); ?>
<div class="newsposts" id="post-<?php the_ID(); ?>"><p>
<?php the_content('Click here for more »'); ?><br>
</div>
<?php endwhile; ?>
<?php next_posts_link('« Previous Entries') ?>
<?php previous_posts_link('Next Entires »') ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>