Forum Moderators: open
<?php
include ($_SERVER['DOCUMENT_ROOT'] . "/blog/wp-load.php");
//query_posts('showposts=1&category_name=Your Category if You Want');
query_posts('showposts=2&orderby=id&order=desc');
while (have_posts()) {
the_post();
$author_id = get_the_author_meta('ID');
$fn = get_the_author_meta('first_name');
$ln = get_the_author_meta('last_name');
$image = get_avatar( $author_id, 75, null, "$fn $ln");
$date = get_the_date();
$permalink= get_permalink();
$title= get_the_title();
echo "
<div class=\"blog-posts\">
<div class=\"blog-post-thumb\">$image</div>
<h2>$title</h2> <h4 class=\"dateline\"> $date</h4> <p>";
the_content();
echo "</div>';
}