-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
29 lines (20 loc) · 827 Bytes
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
// displays all pages by default
//Please note that this is a wordpress construct of pages and that other 'pages' on your wordpress site may use a different template.
//@link https://developer.wordpress.org/themes/basics/template-hierarchy/
//@package Delicious-Oh-Nom-Nom
?>
<?php get_header(); ?>
<main>
<h2>This is the page.php</h2>
<h3>Page under construction! Check back later!</h3>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
//whats being displayed, this will come from our template part
get_template_part('template-parts/content', 'page');
endwhile;
endif;
?>
</main>
<?php get_footer(); ?>