wordpress/php-fpm/wordpress_files/themes/ofiok2018/page-templates/empty.php

18 lines
422 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
/**
* Template Name: Empty Page Template
*
* Template for displaying a page just with the header and footer area and a "naked" content area in between.
* Good for landingpages and other types of pages where you want to add a lot of custom markup.
*
* @package understrap
*/
get_header();
while ( have_posts() ) : the_post();
get_template_part( 'loop-templates/content', 'empty' );
endwhile;
get_footer();