maybe is this that u want
include thie code in a php page and show it 5 post of ur wordpress
<?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=3'); ?>
<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; ?>