How do I display the text inside the WP editor for a page with a custom template?
I was able to fix my problem. In order to access the content I used — <?php /* Start the Loop */ ?> <?php while(have_posts()) : the_post(); ?> <?php the_content();?> <?php endwhile; ?> By adding that snippet of code directly into my template page I was able to easily add the content from the visual … Read more