-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsidebar.php
More file actions
26 lines (17 loc) · 601 Bytes
/
sidebar.php
File metadata and controls
26 lines (17 loc) · 601 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
/*
* This is the base sidebar template. If you add an additional sidebar called 'sidebar2'
* and want to make changes to your sidebar, copy this template to a file called
* 'sidebar-sidebar2.php'.
*
*/
?>
<aside id="sidebar1" class="sidebar" role="complementary">
<div class="inner-sidebar wrap">
<?php if ( is_active_sidebar( 'sidebar1' ) ) : ?>
<?php dynamic_sidebar( 'sidebar1' ); ?>
<?php else : ?>
<!-- <?php _e( 'Add some widgets and they will appear here.', 'platetheme' ); ?> -->
<?php endif; ?>
</div>
</aside>