forked from codeforamerica/cfawp2012
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar-labs.php
More file actions
executable file
·34 lines (26 loc) · 832 Bytes
/
sidebar-labs.php
File metadata and controls
executable file
·34 lines (26 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* The Sidebar containing the primary and secondary widget areas.
*
* @package WordPress
* @subpackage CfAWordpress
* @since CfA
*/
?>
<?php
/* When we call the dynamic_sidebar() function, it'll spit out
* the widgets for that widget area. If it instead returns false,
* then the sidebar simply doesn't exist, so we'll hard-code in
* some default sidebar stuff just in case.
*/
if ( ! dynamic_sidebar( 'labs-primary-widget-area' ) ) : ?>
<?php endif; // end primary widget area ?>
<?php
// A second sidebar for widgets, just because.
if ( is_active_sidebar( 'labs-secondary-widget-area' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</div><!-- #secondary .widget-area -->
<?php endif; ?>
</div>
</div>