summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2013-10-06 12:49:03 +0200
committerTheo Chatzimichos <tampakrap@gentoo.org>2013-10-06 12:49:03 +0200
commit2585802e750dc170833e3c37bf9ea2941d1d06dc (patch)
treec62747fd124aa6b9c550b8a8a282d09eef912805 /themes/mantra/sidebar-footer.php
parentUpdate akismet (diff)
downloadblogs-gentoo-2585802e750dc170833e3c37bf9ea2941d1d06dc.tar.gz
blogs-gentoo-2585802e750dc170833e3c37bf9ea2941d1d06dc.tar.bz2
blogs-gentoo-2585802e750dc170833e3c37bf9ea2941d1d06dc.zip
Add mantra theme, requested by hwoarang
Diffstat (limited to 'themes/mantra/sidebar-footer.php')
-rw-r--r--themes/mantra/sidebar-footer.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/themes/mantra/sidebar-footer.php b/themes/mantra/sidebar-footer.php
new file mode 100644
index 00000000..48454852
--- /dev/null
+++ b/themes/mantra/sidebar-footer.php
@@ -0,0 +1,59 @@
+<?php
+/**
+ * The Footer widget areas.
+ *
+ * @package Cryout Creations
+ * @subpackage mantra
+ * @since mantra 0.5
+ */
+?>
+
+<?php
+ /* The footer widget area is triggered if any of the areas
+ * have widgets. So let's check that first.
+ *
+ * If none of the sidebars have widgets, then let's bail early.
+ */
+ if ( ! is_active_sidebar( 'first-footer-widget-area' )
+ && ! is_active_sidebar( 'second-footer-widget-area' )
+ && ! is_active_sidebar( 'third-footer-widget-area' )
+ && ! is_active_sidebar( 'fourth-footer-widget-area' )
+ )
+ return;
+ // If we get this far, we have widgets. Let do this.
+?>
+
+ <div id="footer-widget-area" role="complementary" <?php mantra_footer_sidebar_class(); ?> >
+
+<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
+ <div id="first" class="widget-area">
+ <ul class="xoxo">
+ <?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
+ </ul>
+ </div><!-- #first .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
+ <div id="second" class="widget-area">
+ <ul class="xoxo">
+ <?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
+ </ul>
+ </div><!-- #second .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
+ <div id="third" class="widget-area">
+ <ul class="xoxo">
+ <?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
+ </ul>
+ </div><!-- #third .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
+ <div id="fourth" class="widget-area">
+ <ul class="xoxo">
+ <?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
+ </ul>
+ </div><!-- #fourth .widget-area -->
+<?php endif; ?>
+ </div><!-- #footer-widget-area -->