Skip to content
This repository has been archived by the owner on May 23, 2018. It is now read-only.

Use aside for outer wrappers where widgets go. #363

Merged
merged 1 commit into from
Oct 31, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sidebar-content-bottom.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

// If we get this far, we have widgets. Let's do this.
?>
<div id="content-bottom-widgets" class="content-bottom-widgets" role="complementary">
<aside id="content-bottom-widgets" class="content-bottom-widgets" role="complementary">
<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
<div class="widget-area">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
Expand All @@ -25,4 +25,4 @@
<?php dynamic_sidebar( 'sidebar-3' ); ?>
</div><!-- .widget-area -->
<?php endif; ?>
</div><!-- .content-bottom-widgets -->
</aside><!-- .content-bottom-widgets -->
4 changes: 2 additions & 2 deletions sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
?>

<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div id="secondary" class="sidebar widget-area" role="complementary">
<aside id="secondary" class="sidebar widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- .sidebar .widget-area -->
</aside><!-- .sidebar .widget-area -->
<?php endif; ?>