This works:
<?php require(‘blog/wp-blog-header.php’); ?>
That works, because it’s the correct path for *you*. Note, in my previous post that I said “SERVER PATH TO/wp-blog-header.php” – I said that because everyone’s server path is different. Sometimes you have to tweak it to “../wp-blog-header.php” – sometimes as far as “../../../wp-blog-header.php”. It all depends on where the file is located relative to the wp file.
i got it to work the way i want it
You *should* say *how* you got it fixed. Nothing is more frustrating than looking for an answer and when you think you’ve found it, the person who has it only says “I figured it out, thanks!” This is a public forum, meant to *share* your knowledge. So share.
I’ll take a guess at it though, for anyone else who may be looking. The reason he had a blank page (or the most common one) as he figured out, was either because he placed the code I provided too low in the file (it *must* come *before* anything else in the file), but it also looks like he figured out that he also needed to include the Loop on his page where he wanted the posts to show.
You can set the number of posts you *want* to show in your Options Panel, or you can use a query to set what categories/number of posts to display. To shorten your excerpt – I’m actually not sure about that, because I’ve always used the_excerpt_reloaded() to handle that.