Uh oh!
There was an error while loading. Please reload this page.
forked from Automattic/_s
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
Latest commit
34 lines (30 loc) · 889 Bytes
/
Copy pathsidebar.php
File metadata and controls
34 lines (30 loc) · 889 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
<?php
/**
* The Sidebar containing the main widget areas.
*
* @package _s
* @since _s 1.0
*/
?>
<div id="secondary" class="widget-area" role="complementary">
<?phpdo_action( 'before_sidebar' ); ?>
<?phpif ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
<aside id="search" class="widget widget_search">
<?phpget_search_form(); ?>
</aside>
<aside id="archives" class="widget">
<h1 class="widget-title"><?php_e( 'Archives', '_s' ); ?></h1>
<ul>
<?phpwp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<aside id="meta" class="widget">
<h1 class="widget-title"><?php_e( 'Meta', '_s' ); ?></h1>
<ul>
<?phpwp_register(); ?>
<li><?phpwp_loginout(); ?></li>
<?phpwp_meta(); ?>
</ul>
</aside>
<?phpendif; // end sidebar widget area ?>
</div><!-- #secondary .widget-area -->