Hola Santox, fijate si esto te sirve, lo subí a mi blog hace unos días:
Código PHP:
<h4>Últimos posts</h4>
<?php
//incluimos wordpress
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
//pedimos 5 posts y mostramos una lista desordenada
query_posts('showposts=5'); ?>
<ul style="list-style: none;">
<?php
while (have_posts()): the_post();
echo "<li><a href='".get_permalink($post->ID)."'>";
the_title();
echo '</a></li>';
endwhile; ?>
</ul>
Esto te devuelve los últimos 5, Prestá atención a la línea de "
require": debe apuntar a donde tenés el archivo "
wp-blog-header.php" de tu blog.
Cualquier duda decime.