-
Notifications
You must be signed in to change notification settings - Fork 4
/
sidebar.php
40 lines (31 loc) · 1.17 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php lightword_sidebar(); ?>
<div class="content-sidebar">
<?php
/* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar') ) : ?>
<h3><?php _e('Pages','lightword'); ?></h3>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
<h3><?php _e('Categories','lightword'); ?></h3>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
<h3><?php _e('Blogroll','lightword'); ?></h3>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
</ul>
<h3><?php _e('Archive','lightword'); ?></h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h3><?php _e('Meta','lightword'); ?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS','lightword'); ?>"><?php _e("<abbr title=\"Really Simple Syndication\">RSS</abbr>",'lightword'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS','lightword'); ?>"><?php _e("Comments <abbr title=\"Really Simple Syndication\">RSS</abbr>",'lightword'); ?></a></li>
<?php wp_meta(); ?>
</ul>
<?php endif; ?>
</div>