26 lines
837 B
PHP
26 lines
837 B
PHP
<?php
|
|
/**
|
|
* This is the sidebar!
|
|
*
|
|
* This file will render the sidebar, as defined by the user in the admin area
|
|
*
|
|
*/
|
|
?>
|
|
<?php if ( ! dynamic_sidebar( 'sidebar' ) ) : // If the user hasn't defined any specific widgets in the admin yet, display a couple dummy widgets, as written below ?>
|
|
<aside id="archives" class="widget">
|
|
<h3 class="side-title"><?php _e( 'Archives', 'naked' ); // Wordpress archives widget ?></h3>
|
|
<ul>
|
|
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<aside id="meta" class="widget">
|
|
<h3 class="side-title"><?php _e( 'Meta', 'naked' ); // Wordpress meta widget ?></h3>
|
|
<ul>
|
|
<?php wp_register(); ?>
|
|
<li><?php wp_loginout(); ?></li>
|
|
<?php wp_meta(); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<?php endif; // end sidebar widget area ?>
|