Here is my page template:
It’s not pulling the content in. Not sure what I’m missing?
<?php get_header(); ?>
<section id="services">
<div class="container">
<div class="row divide">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
</section>
<?php get_footer(); ?>
This code is for display post list in template. Please try it.
Try