-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebar.php
More file actions
48 lines (39 loc) · 712 Bytes
/
sidebar.php
File metadata and controls
48 lines (39 loc) · 712 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
38
39
40
41
42
43
44
45
46
47
48
<!-- START SIDEBAR -->
<div id="sidebar">
<div>
<h2>Search</h2>
<ul>
<li><?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
</ul>
</div>
<div>
<ul>
<?php wp_list_pages('title_li=<h2>Pages</h2>'); ?>
</ul>
</div>
<div>
<h2>Archive</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div>
<ul>
<?php wp_list_categories('title_li=<h2>Categories</h2>'); ?>
</ul>
</div>
<div>
<ul>
<?php wp_list_bookmarks(); ?>
</ul>
</div>
<div>
<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://wordpress.org/" title="WordPress">WordPress</a></li>
</ul>
</div>
</div>
<!-- END SIDEBAR -->