Since WordPress version 2.9 you have been able to add a post thumbnail to all your posts on your website. A post thumbnail is called a featured image for the posts, this image can be displayed in anyway you want, it is up to the theme developer. The benefit of this image is that it allows you to add an image to a post without it appearing in the content of the actual post.
This will allow you to use an image to display the post instead of just the content. The main use of this image is to be used on the index page or the search results page of your WordPress site.
Enable Theme Support For Featured Post
By default themes do not support this feature you need to add some code to the functiona.php file.
add_theme_support( 'post-thumbnails' );Continue reading


