-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-sitemap.php
23 lines (23 loc) · 979 Bytes
/
page-sitemap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php /* Template Name: Sitemap */ ?>
<?php get_header() ?>
<?php terx_template_comment(__FILE__) ?>
<div id="main" class="container">
<div id="main-row" class="row">
<?php terx_get_sidebar('left','blog') ?>
<div id="primary" class="<?php echo TERX_PRIMARY_CLASS ?>">
<div id="content" role="main">
<?php the_post() ?>
<?php get_template_part('template-parts/page/content','page') ?>
<h3><?php _e('Pages','terra') ?></h3>
<ul><?php wp_list_pages('depth=0&title_li=') ?></ul>
<?php do_action('terx_site_map_extra_post_types') ?>
<h3><?php _e('Posts','terra') ?></h3>
<ul><?php wp_list_categories('title_li=&hierarchical=0&show_count=1') ?></ul>
<h3><?php _e('Archives','terra') ?></h3>
<ul><?php wp_get_archives('type=monthly&limit=12') ?></ul>
</div><!-- /#content -->
</div><!-- /#primary -->
<?php terx_get_sidebar('right','blog') ?>
</div><!-- /#main-row -->
</div><!-- /#main -->
<?php get_footer() ?>