frankyonnetti
7/7/2013 - 8:54 PM

#wordpress featured image

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();
  } 
?>