WordPress theme: Add page content to the bottom of the Contact form

<?php the_content(); ?>

That’s the function that displays everything you saved in Pages – > Contact Page. You just need to move that anywhere you would like.

Just keep in mind the_content() must be between the while loop for it to work.

<?php if (have_posts()) : while (have_posts()) : the_post(); ?> // Begins loop

<?php endwhile; ?> // ends while loop