Content not displaying on page
you need to add the loop before and after and add the function the_content() something like this: <?php /** ** Template Name : Home **/ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?> <?php get_footer(); ?>