Wordpress show page content
<?php
if (have_posts()) :
while (have_posts()) :
the_post();?>
<h1><?php if ( ! is_front_page() ) the_title(); ?></h1>
<div id="feature_image">
<?php the_post_thumbnail();
?>
</div>
<div id="text">
<?php
the_content(); ?><br/></div>
<?php
endwhile;
endif;
?>