-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebar.php
More file actions
26 lines (23 loc) · 847 Bytes
/
sidebar.php
File metadata and controls
26 lines (23 loc) · 847 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
<?php
/**
* Widgetized Sidebar Area (Widgets)
*
*
* @file sidebar.php
* @package WordPress
* @subpackage Shell
* @author Emil Uzelac, nofearinc
* @copyright 2003 - 2012 ThemeID, 2013 DevWP
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/shell-lite/sidebar.php
* @link http://codex.wordpress.org/Theme_Development#Widgets_.28sidebar.php.29
* @since available since Release 1.0
*/
?>
<div id="widgets" class="grid col-300 fit">
<?php shell_widgets(); // above widgets hook ?>
<?php if ( ! dynamic_sidebar( 'primary-sidebar-widget' ) ) : ?>
<?php endif; //end primary-widget ?>
<?php shell_widgets_end(); // after widgets hook ?>
</div><!-- end of #widgets -->