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 … Read more