<h2>Latest posts</h2>
<ul>
<?php
global $post;
$myposts = get_posts('numberposts=5');
foreach($myposts as $post) :
?>
<li><?php the_time('F j, Y'); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
|