I tried that, doesn’t work.
I figured it out by doing the_title(‘<h2>’,'</h2>’,1);
http://codex.wordpress.org/Function_Reference/the_title
Thanks Esmi, I’ve added some custom code to list the latest five posts as follows:
query_posts('posts_per_page=5');
global $more;
$more = 0;
while (have_posts()) : the_post();
the_content('Read the full post »');
endwhile;
It works great but what I’m finding is the title of the post isn’t being displayed. I tried using the_title() within h2 tags but it’s being displayed outside of the tag for some reason.