-
Notifications
You must be signed in to change notification settings - Fork 21
/
tmpl_mappa.php
36 lines (34 loc) · 1.02 KB
/
tmpl_mappa.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
<?php
/*
Template Name: Mappa del Sito
*/
?>
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="postentry">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2 class="posttitle"><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<div id="left">
<h3>Pagine</h3>
<ul>
<?php
wp_list_pages ("sort_column=menu_order&title_li=");
?>
</ul>
</div>
<div id="right">
<h3>Categorie</h3>
<ul>
<?php
wp_list_categories ("hide_empty=0&sort_column=menu_order&title_li=");
?>
</ul>
</div>
</div>
</div>
</div>
<?php get_sidebar('right'); ?>
<?php get_footer(); ?>