treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Display thumbnail in Wordpress 3 default theme

  • I want to use the new thumbnail feature that is present in wordpress 3

    I want to use this feature in the new default theme in WP 3. Please tell me how to do it?
  • Paste this within the loop:

    <?php if ( has_post_thumbnail() ) {
    the_post_thumbnail();
    }; ?>


    If the post has a featured image, it will then be displayed.