Quick Youtube movie I did about adding featured images to a post in WordPress.
Code that will add the featured image to your post
// check if the post has a Post Thumbnail assigned to it. if ( has_post_thumbnail() ) { // This would tell WordPress that if there is a // Featured image to insert it in the page the_post_thumbnail(); } // Regular Content from the Post the_content();
Post Thumbnail / Featured Image on WordPress Site