-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebar.php
More file actions
executable file
·36 lines (28 loc) · 985 Bytes
/
sidebar.php
File metadata and controls
executable file
·36 lines (28 loc) · 985 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
<?php
/**
* @package WordPress
* @subpackage HTML5-Reset-WordPress-Theme
* @since HTML5 Reset 2.0
*/
?>
<div id="sidebar">
<?php if (!function_exists('dynamic_sidebar') && !dynamic_sidebar('Sidebar Widgets')) : else : ?>
<!-- All this stuff in here only shows up if you DON'T have any widgets active in this zone -->
<div class="sidebar-sub">
<h2><?php _e('Categories','typesense'); ?></h2>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</div>
<div class="sidebar-sub">
<h2><?php _e('Search','typesense'); ?></h2>
<?php get_search_form(); ?>
</div>
<div class="sidebar-sub">
<h2><?php _e('Archives','typesense'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<?php endif; ?>
</div>