first commit
This commit is contained in:
24
wp-content/themes/nuzi/sidebar.php
Normal file
24
wp-content/themes/nuzi/sidebar.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
$align = "right";
|
||||
if(is_singular() && get_metabox("layout")=="left")
|
||||
$align = "left";
|
||||
?>
|
||||
<div class="span3 <?php echo $align;?>-sidebar">
|
||||
<section id="sidebar">
|
||||
<?php
|
||||
if(!dynamic_sidebar(get_metabox("custom_sidebar")!="" ? get_metabox("custom_sidebar") : 'default-sidebar')) {
|
||||
print 'There is no widget. You should add your widgets into <strong>';
|
||||
print 'Default';
|
||||
print '</strong> sidebar area on <strong>Appearance => Widgets</strong> of your dashboard. <br/><br/>';
|
||||
?>
|
||||
<aside id="archives" class="widget">
|
||||
<h3 class="widget-title">
|
||||
<?php _e('Archives', 'themewaves'); ?>
|
||||
</h3>
|
||||
<ul class="side-nav">
|
||||
<?php wp_get_archives(array('type' => 'monthly')); ?>
|
||||
</ul>
|
||||
</aside>
|
||||
<?php } ?>
|
||||
</section>
|
||||
</div>
|
Reference in New Issue
Block a user