-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-c1.php
30 lines (27 loc) · 1.03 KB
/
sidebar-c1.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
<div id="sidebar" class="widget-area" >
<div class="sidebar-inner">
<?php if ( ! dynamic_sidebar( 'c1-books4languages-widget-area' ) ) : ?>
<div id="search" class="widget widget_search">
<?php get_search_form(); ?>
</div>
<div id="archives" class="widget">
<h2 class="widget-title"><?php _e( 'Archives', 'dw-wallpress' ); ?></h2>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</div>
<div id="meta" class="widget">
<h2 class="widget-title"><?php _e( 'Meta', 'dw-wallpress' ); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</div>
<?php endif; // end sidebar widget area ?>
<div id="copyright">
<?php do_action( 'wallpress_credits' ); ?>
<a href="<?php echo esc_url( 'http://wordpress.org/' ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'dw-wallpress' ); ?>"><?php printf( __( 'Proudly powered by %s', 'dw-wallpress' ), 'WordPress' ); ?></a>
</div>
</div>
</div><!-- #sidebar .widget-area -->