Joel, if all you want is a homepage with some featured posts and a list of your most recent ones, here's something you could try.
Copy the following code into a PHP file, welcome.php for example:
PHP Code:
<?php get_header(); ?>
<div id="content">
<div id="fposts">
<ul>
<li><a href="http://yoursite.com/link-to-post1/">Featured Post 1</a></li>
<li><a href="http://yoursite.com/link-to-post2/">Featured Post 2</a></li>
</ul>
</div>
<div id="rposts">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<p><?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?> | <?php the_category(', '); ?> | <?php comments_number('No comment', '1 comment', '% comments'); ?></p>
<?php endwhile; else: ?>
<p>Sorry, no posts we're found.</p>
<?php endif; ?>
<p align="center"><?php posts_nav_link(); ?></p>
</div>
<?php get_footer(); ?>
Just be sure to change the links inside the fposts div to the ones you want to display.
Save the file (welcome.php) into your theme's root folder and apply the template to a page (which I showed in post #3) which you've designated the front page (inside your dashboard settings, which eborg described).
Then open up your theme's stylesheet and add the new divs created (fposts and rposts) and apply whatever style properties you wish to use.
Let me know if this works
.
Bookmarks