forked from KeywordDomains/Lehti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
executable file
·38 lines (35 loc) · 1.87 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
<?php
/**
* only shown if widget sidebar not enabled
*/
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar') ) :
wp_list_bookmarks('title_after=&title_before=');
wp_list_categories('title_li=' . __('Categories:', 'boloday'));
?>
<ul>
<li id="search">
<label for="s"><?php _e('Search:', 'boloday'); ?></label>
<form id="searchform" method="get" action="<?php echo home_url(); ?>">
<div>
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" value="<?php _e('Search'); ?>" />
</div>
</form>
</li>
<li id="archives"><?php _e('Archives:', 'boloday'); ?>
<ul><?php wp_get_archives('type=monthly'); ?></ul>
</li>
<li id="meta"><?php _e('Meta:', 'boloday'); ?>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS', 'boloday'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>', 'boloday'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS', 'boloday'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>', 'boloday'); ?></a></li>
<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional', 'boloday'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>', 'boloday'); ?></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'boloday'); ?>"><abbr title="WordPress">WP</abbr></a></li>
<?php wp_meta(); ?>
</ul>
</li>
</ul>
<?php endif; ?>