symdesign
10/11/2015 - 9:27 PM

Full Size instead of Thumbnail

echo full sized image instead of thumbnail

<?php

if (has_post_thumbnail() ) {
    $image_src = wp_get_attachment_image_src( get_post_thumbnail_id(),'full' );
    echo '<img src="' . $image_src[0]  . '" width="100%"  />';
}

?>