Aşağıdaki kodlar işinizi görür hocam.

<?php
// Wordpress temayı devre dışı bırakıyoruz.
define('WP_USE_THEMES', false);
// Blog klasörü içerisindeki wp-load.php sayfamıza ekliyoruz.
require('blog/wp-load.php');

// Blog gönderilerini listeliyoruz. showposts değeri kaç tane içeriği çekmek istediğiniz ile ilgilidir. 1 yazarsanız 1 tane çeker.
query_posts('showposts=1');
while (have_posts()): the_post(); ?>

<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Devamını Oku</a></p>

<?php endwhile; ?>