Forum Moderators: rogerd & travelin cat
<?php
query_posts('showposts=5&cat=6,12');
while (have_posts()) {
the_post();
$date = get_the_date();
$permalink = get_permalink();
$title = get_the_title();
echo "<p><a class=\"your-post-class\" href=\"$permalink\" title=\"$title\">$title</a> $date By: ";
the_author_posts_link();
echo '</p>';
}
?>