The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-20 20:45:00 +02:00
|
|
|
* The Sidebar containing the homepage widget areas.
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
*
|
2012-08-20 20:45:00 +02:00
|
|
|
* If no active widgets in either sidebar, they will be hidden completely.
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Twelve
|
|
|
|
* @since Twenty Twelve 1.0
|
|
|
|
*/
|
2012-08-20 20:45:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
The homepage 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( 2 ) && ! is_active_sidebar( 3 ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If we get this far, we have widgets. Let do this.
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
?>
|
2012-08-20 20:45:00 +02:00
|
|
|
<div id="secondary" <?php twentytwelve_homepage_sidebar_class(); ?> role="complementary">
|
|
|
|
<?php if ( is_active_sidebar( 2 ) ) : ?>
|
|
|
|
<div class="first home-widgets">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
|
|
|
</div><!-- .first .home-widgets -->
|
|
|
|
<?php endif; ?>
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
|
2012-08-20 20:45:00 +02:00
|
|
|
<?php if ( is_active_sidebar( 3 ) ) : ?>
|
|
|
|
<div class="second home-widgets">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
|
|
|
</div><!-- .second .home-widgets -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #secondary .widget-area -->
|