This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
neag/sidebar-header.php
Go to file<?php | |
/** | |
* The Sidebar containing the main widget areas. | |
* | |
* @package cornerstone | |
*/ | |
?> | |
<div id="" class="widget-area" role="complementary"> | |
<?php if ( ! dynamic_sidebar( 'header') ) : ?> | |
<aside id="meta" class="widget"> | |
<h1 class="widget-title"><?php _e( 'Meta', 'cs' ); ?></h1> | |
<ul> | |
<?php wp_register(); ?> | |
<li><?php wp_loginout(); ?></li> | |
<?php wp_meta(); ?> | |
</ul> | |
</aside> | |
<?php endif; // end sidebar widget area ?> | |
</div><!-- #secondary --> |