-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
26 lines (21 loc) · 914 Bytes
/
sidebar.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
<div id="primary" class="aside">
<?php
/* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Right Sidebar') ) : ?>
<li><?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.-->
<li class="calendar">
<?php get_calendar(); ?>
</li>
<li><span class="sidetitle">Author</span>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
<?php wp_list_pages('title_li=<span class="sidetitle">Pages</span>' ); ?>
<li><span class="sidetitle">Archives</span>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_categories('show_count=0&title_li=<span class="sidetitle">Categories</span>'); ?>
<?php endif; ?>
</div>