-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
37 lines (29 loc) · 893 Bytes
/
page.php
File metadata and controls
37 lines (29 loc) · 893 Bytes
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
29
30
31
32
33
34
35
36
37
<?php
/**
* Template Name: Custom Page Template
* Description: A custom page template that follows the theme's design patterns.
*
* @package soodacode
*/
get_header(); ?>
<main id="primary" class="site-main custom-page">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<section class="header-page">
<h1 class="page-title"><?php the_title(); ?></h1>
</section>
<!-- Page Content -->
<div class="container">
<div class="page-content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="container">
<p><?php _e('Sorry, no content found.', 'soodacode'); ?></p>
</div>
<?php endif; ?>
</main><!-- #main -->
<?php
get_footer();