jchapa was faster; I'll post anyway because this approach is slightly different than his and may suit better.
I use the snippet below to connect to a Wordpress on the same server:
include ("/your/blog/path/wp-blog-header.php");
$myposts = get_posts('numberposts=$number&offset=0&category=0');
echo "<ul class='Bloglinks'>";
foreach($myposts as $post)
{
echo '<li><a href="';
the_permalink();
echo '">';
the_date();
echo " ";
the_title();
echo '</a></li>';
}
echo "<ul>";
IThis snippet load the whole wordpress engine into memory, and wordpress is BIG.
If you get memory_limit problems, make this a include file that you include via HTTP in your dreamweaver file.