-
Notifications
You must be signed in to change notification settings - Fork 5
/
page.php
51 lines (41 loc) · 873 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* The template for displaying a page.
*
* @package StormBringer
* @since StormBringer 0.0.1
*
* Template Name: Sitemap
*/
?>
<?php get_header(); ?>
<?php //get_sidebar(); ?>
<div id="content" role="main">
<?php
/**
* stormbringer_content_before hook.
*
* @hooked stormbringer_breadcrumb - 10
*/
do_action( 'stormbringer_content_before' );
?>
<?php if ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'content', 'page' );
?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ),
'after' => '</div>',
) );
?>
<?php endif; ?>
<?php
/**
* stormbringer_content_after hook.
*/
do_action( 'stormbringer_content_after' );
?>
</div>
<!-- /#content -->
<?php get_footer(); ?>