Hey, I am trying to get my latest post to show up with an image on my about page.
The components I want to show up are: the title (with permalink), the excerpt (truncated), the photo (if present), and the metadata.
I entered the code below, but simply got the text of the page itself rather than the latest post.
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
<?php get_the_image( array( 'custom_key' => array( 'thumbnail' ), 'default_size' => 'thumbnail', 'width' => '310', 'height' => '150' ) ); ?>
<?php the_excerpt(); ?>
<p class="postmetadata"><?php the_time('M d, Y') ?> | <?php comments_popup_link('Have your say »', '1 Comment »', '% Comments »'); ?></p>
Thanks for the help.