11 lines
232 B
PHP
11 lines
232 B
PHP
<?php
|
|
/**
|
|
* Template Name: Custom Template
|
|
*/
|
|
?>
|
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
<?php get_template_part('templates/page', 'header'); ?>
|
|
<?php get_template_part('templates/content', 'page'); ?>
|
|
<?php endwhile; ?>
|