I have below code which displays the featured image from the post. But when I add an image to the post it also shows up with the featured image.
What I need to do is just show the featured image and some content from the post with a read more link, after someone clicks the read more link the other images should appear with the full post.
<? query_posts('post_type=front&p=47');
while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<? if ( has_post_thumbnail() ) {
the_post_thumbnail( 'front-thumb' );
}
the_content('Read more');
endwhile; ?>