82 lines
2.9 KiB
PHP
82 lines
2.9 KiB
PHP
<div id="sidebar">
|
|
<ul>
|
|
|
|
<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><h2><?php _e('Author'); ?></h2>
|
|
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
|
|
</li>
|
|
-->
|
|
|
|
<li>
|
|
<?php /* If this is a category archive */ if (is_category()) { ?>
|
|
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
|
|
for the '<?php echo single_cat_title(); ?>' category.</p>
|
|
|
|
<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
|
|
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
|
|
for the day <?php the_time('l, F jS, Y'); ?>.</p>
|
|
|
|
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
|
|
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
|
|
for <?php the_time('F, Y'); ?>.</p>
|
|
|
|
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
|
|
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
|
|
for the year <?php the_time('Y'); ?>.</p>
|
|
|
|
<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
|
|
<p>You have searched the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
|
|
for <strong>'<?php echo $s; ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>
|
|
|
|
<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
|
|
<p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives.</p>
|
|
|
|
<?php } ?>
|
|
</li>
|
|
|
|
|
|
|
|
|
|
<!-- The Calendar is disabled per default. Uncomment if you want to use it.
|
|
<li><h2><?php _e('Calendar'); ?></h2>
|
|
<?php get_calendar(); ?>
|
|
</li>
|
|
-->
|
|
|
|
<li><h2><?php _e('Archives'); ?></h2>
|
|
<ul>
|
|
<?php wp_get_archives('type=monthly'); ?>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h2><?php _e('Categories'); ?></h2>
|
|
<ul>
|
|
<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','28') ?>
|
|
</ul>
|
|
</li>
|
|
|
|
<?php /* If this is the frontpage */ if (is_home()) { ?>
|
|
<li><h2><?php _e('Links'); ?></h2>
|
|
<ul>
|
|
<?php get_links('-1', '<li>', '</li>', '<br />'); ?>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h2><?php _e('Admin'); ?></h2>
|
|
<ul>
|
|
<li><a href="<?php echo get_settings('siteurl'); ?>/wp-login.php"><?php _e('Login'); ?></a></li>
|
|
<!--
|
|
<li><a href="<?php echo get_settings('siteurl'); ?>/wp-register.php"><?php _e('Register'); ?></a></li>
|
|
-->
|
|
</ul>
|
|
</li>
|
|
<?php } ?>
|
|
|
|
</ul>
|
|
</div>
|
|
|