~canonical-sysadmins/wordpress/4.7.3

« back to all changes in this revision

Viewing changes to wp-content/themes/twentyfourteen/sidebar.php

  • Committer: Haw Loeung
  • Date: 2016-12-13 06:56:21 UTC
  • mfrom: (1.1.20 upstream)
  • Revision ID: haw.loeung@canonical.com-20161213065621-8tcu7u7vlxgs2s81
Merge WP4.7 from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * The Sidebar containing the main widget area
4
 
 *
5
 
 * @package WordPress
6
 
 * @subpackage Twenty_Fourteen
7
 
 * @since Twenty Fourteen 1.0
8
 
 */
9
 
?>
10
 
<div id="secondary">
11
 
        <?php
12
 
                $description = get_bloginfo( 'description', 'display' );
13
 
                if ( ! empty ( $description ) ) :
14
 
        ?>
15
 
        <h2 class="site-description"><?php echo esc_html( $description ); ?></h2>
16
 
        <?php endif; ?>
17
 
 
18
 
        <?php if ( has_nav_menu( 'secondary' ) ) : ?>
19
 
        <nav role="navigation" class="navigation site-navigation secondary-navigation">
20
 
                <?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
21
 
        </nav>
22
 
        <?php endif; ?>
23
 
 
24
 
        <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
25
 
        <div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
26
 
                <?php dynamic_sidebar( 'sidebar-1' ); ?>
27
 
        </div><!-- #primary-sidebar -->
28
 
        <?php endif; ?>
29
 
</div><!-- #secondary -->