mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-08 02:15:47 +00:00
33 lines
843 B
PHP
33 lines
843 B
PHP
<?php
|
|
/**
|
|
* The Sidebar containing the main widget areas.
|
|
*
|
|
* @package Professional
|
|
*/
|
|
?>
|
|
<div id="secondary" class="widget-area col-md-4" role="complementary">
|
|
<?php if ( ! dynamic_sidebar( 'sidebar-primary' ) ) : ?>
|
|
|
|
<aside id="archives" class="widget">
|
|
<h1 class="widget-title"><?php _e( 'Archives', 'professional' ); ?></h1>
|
|
<ul>
|
|
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<aside id="meta" class="widget">
|
|
<h1 class="widget-title"><?php _e( 'Meta', 'professional' ); ?></h1>
|
|
<ul>
|
|
<?php wp_register(); ?>
|
|
<li><?php wp_loginout(); ?></li>
|
|
<?php wp_meta(); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<aside id="search" class="widget widget_search">
|
|
<?php get_search_form(); ?>
|
|
</aside>
|
|
|
|
<?php endif; // end sidebar widget area ?>
|
|
</div><!-- #secondary -->
|