<?php /** * Template Name: Checkout Page * * A blank custom page template. * * The "Template Name:" bit above allows this to be selectable * from a dropdown menu on the edit page screen. * */ get_header(); if ( have_posts() ) : while ( have_posts() ) : the_post(); the_content(); endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> <?php get_footer(); ?>