WordPress - featured image #wordpress
<?php
/*
* http://codex.wordpress.org/Post_Thumbnails
* place this code right before the_content(); in content-page.php
*/
// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>