WordPress Load Only Page Text

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post();
      the_title( '<h3>', '</h3>' );// puts the title in h3 tags

      the_content(); // adds the content
      endwhile; else: ?>
      <p>Sorry, no posts matched your criteria.</p>
      <?php endif; ?>

Notice that you can use the title function where you want as long as it is after the if/while/the_post and before the endwhile; This is how you retrieve the title and the content in separate areas. I can’t comment on this part of stackexchange, but hope this helps.