You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
<?php
|
|
/**
|
|
* The Footer Sidebar
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
* @since Twenty Fourteen 1.0
|
|
*/
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-3' ) ) {
|
|
return;
|
|
}
|
|
?>
|
|
|
|
<div id="supplementary">
|
|
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
|
</div><!-- #footer-sidebar -->
|
|
</div><!-- #supplementary -->
|