Make WordPress Core

Ticket #26093: 26093.patch

File 26093.patch, 23.7 KB (added by rickalee, 11 years ago)
  • content-aside.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
     57                if ( has_tag() ) {
    5858                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-audio.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
     57                if ( has_tag() ) {
    5858                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-featured-post.php

     
    1212        <a class="post-thumbnail" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
    1313        <?php
    1414                if ( has_post_thumbnail() ) :
    15                         if ( 'grid' == get_theme_mod( 'featured_content_layout' ) )
     15                        if ( 'grid' == get_theme_mod( 'featured_content_layout' ) ) {
    1616                                the_post_thumbnail();
    17                         else
     17                        } else {
    1818                                the_post_thumbnail( 'twentyfourteen-full-width' );
     19                        }
    1920                endif;
    2021        ?>
    2122        </a>
  • content-gallery.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
     57                if ( has_tag() ) {
    5858                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-image.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
    58                         echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     57                if ( has_tag() ) {
     58                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-link.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
    58                         echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     57                if ( has_tag() ) {
     58                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-quote.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
    58                         echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     57                if ( has_tag() ) {
     58                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content-video.php

     
    5454        </div><!-- .entry-content -->
    5555
    5656        <?php
    57                 if ( has_tag() )
    58                         echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     57                if ( has_tag() ) {
     58                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     59                }
    5960        ?>
    6061</article><!-- #post-## -->
  • content.php

     
    6363        <?php endif; ?>
    6464
    6565        <?php
    66                 if ( has_tag() )
    67                         echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     66                if ( has_tag() ) {
     67                        echo get_the_tag_list( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' );
     68                }
    6869        ?>
    6970</article><!-- #post-## -->
  • functions.php

     
    3131 *
    3232 * @since Twenty Fourteen 1.0
    3333 */
    34 if ( ! isset( $content_width ) )
     34if ( ! isset( $content_width ) ) {
    3535        $content_width = 474;
     36}
    3637
    3738/**
    3839 * Twenty Fourteen only works in WordPress 3.6 or later.
    3940 */
    40 if ( version_compare( $GLOBALS['wp_version'], '3.6', '<' ) )
     41if ( version_compare( $GLOBALS['wp_version'], '3.6', '<' ) ) {
    4142        require get_template_directory() . '/inc/back-compat.php';
     43}
    4244
    4345if ( ! function_exists( 'twentyfourteen_setup' ) ) :
    4446/**
     
    203205         * Translators: If there are characters in your language that are not supported
    204206         * by Lato, translate this to 'off'. Do not translate into your own language.
    205207         */
    206         if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) )
     208        if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) ) {
    207209                $font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ), "//fonts.googleapis.com/css" );
     210        }
    208211
    209212        return $font_url;
    210213}
     
    230233        wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style' ), '20131110' );
    231234        wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );
    232235
    233         if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
     236        if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
    234237                wp_enqueue_script( 'comment-reply' );
     238        }
    235239
    236         if ( is_singular() && wp_attachment_is_image() )
     240        if ( is_singular() && wp_attachment_is_image() ) {
    237241                wp_enqueue_script( 'twentyfourteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20130402' );
    238 
    239         if ( is_active_sidebar( 'sidebar-3' ) )
     242        }
     243               
     244        if ( is_active_sidebar( 'sidebar-3' ) ) {
    240245                wp_enqueue_script( 'jquery-masonry' );
     246        }
    241247
    242248        if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) {
    243249                wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20131109', true );
     
    303309                }
    304310
    305311                // get the URL of the next image attachment...
    306                 if ( $next_id )
     312                if ( $next_id ) {
    307313                        $next_attachment_url = get_attachment_link( $next_id );
     314                }
    308315
    309316                // or get the URL of the first image attachment.
    310                 else
     317                else {
    311318                        $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
     319                }
    312320        }
    313321
    314322        printf( '<a href="%1$s" rel="attachment">%2$s</a>',
     
    337345                $post_count = count_user_posts( $contributor_id );
    338346
    339347                // Move on if user has not published a post (yet).
    340                 if ( ! $post_count )
     348                if ( ! $post_count ) {
    341349                        continue;
     350                }
    342351        ?>
    343352
    344353        <div class="contributor">
     
    379388 * @return array The filtered body class list.
    380389 */
    381390function twentyfourteen_body_classes( $classes ) {
    382         if ( is_multi_author() )
     391        if ( is_multi_author() ) {
    383392                $classes[] = 'group-blog';
     393        }
    384394
    385         if ( get_header_image() )
     395        if ( get_header_image() ) {
    386396                $classes[] = 'header-image';
    387         else
     397        } else {
    388398                $classes[] = 'masthead-fixed';
     399        }
    389400
    390         if ( is_archive() || is_search() || is_home() )
     401        if ( is_archive() || is_search() || is_home() ) {
    391402                $classes[] = 'list-view';
     403        }
    392404
    393405        if ( ( ! is_active_sidebar( 'sidebar-2' ) )
    394406                || is_page_template( 'page-templates/full-width.php' )
    395407                || is_page_template( 'page-templates/contributors.php' )
    396                 || is_attachment() )
     408                || is_attachment() ) {
    397409                $classes[] = 'full-width';
     410        }
    398411
    399         if ( is_active_sidebar( 'sidebar-3' ) )
     412        if ( is_active_sidebar( 'sidebar-3' ) ) {
    400413                $classes[] = 'footer-widgets';
     414        }
    401415
    402         if ( is_singular() )
     416        if ( is_singular() ) {
    403417                $classes[] = 'singular';
     418        }
    404419
    405         if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) )
     420        if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) {
    406421                $classes[] = 'slider';
    407         elseif ( is_front_page() )
     422        } elseif ( is_front_page() ) {
    408423                $classes[] = 'grid';
     424        }
    409425
    410426        return $classes;
    411427}
     
    423439 * @return array The filtered post class list.
    424440 */
    425441function twentyfourteen_post_classes( $classes ) {
    426         if ( ! post_password_required() && has_post_thumbnail() )
     442        if ( ! post_password_required() && has_post_thumbnail() ) {
    427443                $classes[] = 'has-post-thumbnail';
     444        }
    428445
    429446        return $classes;
    430447}
     
    443460function twentyfourteen_wp_title( $title, $sep ) {
    444461        global $paged, $page;
    445462
    446         if ( is_feed() )
     463        if ( is_feed() ) {
    447464                return $title;
     465        }
    448466
    449467        // Add the site name.
    450468        $title .= get_bloginfo( 'name' );
    451469
    452470        // Add the site description for the home/front page.
    453471        $site_description = get_bloginfo( 'description', 'display' );
    454         if ( $site_description && ( is_home() || is_front_page() ) )
     472        if ( $site_description && ( is_home() || is_front_page() ) ) {
    455473                $title = "$title $sep $site_description";
     474        }
    456475
    457476        // Add a page number if necessary.
    458         if ( $paged >= 2 || $page >= 2 )
    459                 $title = "$title $sep " . sprintf( __( 'Page %s', 'twentyfourteen' ), max( $paged, $page ) );
     477        if ( $paged >= 2 || $page >= 2 ) {
     478                $title = "$title $sep " . sprintf( __( 'Page %s', 'twentyfourteen' ), max( $paged, $page ) );   
     479        }
    460480
    461481        return $title;
    462482}
     
    477497 * To overwrite in a plugin, define your own Featured_Content class on or
    478498 * before the 'setup_theme' hook.
    479499 */
    480 if ( ! class_exists( 'Featured_Content' ) && 'plugins.php' !== $GLOBALS['pagenow'] )
     500if ( ! class_exists( 'Featured_Content' ) && 'plugins.php' !== $GLOBALS['pagenow'] ) {
    481501        require get_template_directory() . '/inc/featured-content.php';
     502}
     503 No newline at end of file
  • inc/featured-content.php

     
    4646                $theme_support = get_theme_support( 'featured-content' );
    4747
    4848                // Return early if theme does not support Featured Content.
    49                 if ( ! $theme_support )
     49                if ( ! $theme_support ) {
    5050                        return;
     51                }
    5152
    5253                /*
    5354                 * An array of named arguments must be passed as the second parameter
    5455                 * of add_theme_support().
    5556                 */
    56                 if ( ! isset( $theme_support[0] ) )
     57                if ( ! isset( $theme_support[0] ) ) {
    5758                        return;
     59                }
    5860
    5961                // Return early if "featured_content_filter" has not been defined.
    60                 if ( ! isset( $theme_support[0]['featured_content_filter'] ) )
     62                if ( ! isset( $theme_support[0]['featured_content_filter'] ) ) {
    6163                        return;
     64                }
    6265
    6366                $filter = $theme_support[0]['featured_content_filter'];
    6467
    6568                // Theme can override the number of max posts.
    66                 if ( isset( $theme_support[0]['max_posts'] ) )
     69                if ( isset( $theme_support[0]['max_posts'] ) ) {
    6770                        self::$max_posts = absint( $theme_support[0]['max_posts'] );
     71                }
    6872
    6973                add_filter( $filter,                              array( __CLASS__, 'get_featured_posts' )    );
    7074                add_action( 'customize_register',                 array( __CLASS__, 'customize_register' ), 9 );
     
    100104                $post_ids = self::get_featured_post_ids();
    101105
    102106                // No need to query if there is are no featured posts.
    103                 if ( empty( $post_ids ) )
     107                if ( empty( $post_ids ) ) {
    104108                        return array();
     109                }
    105110
    106111                $featured_posts = get_posts( array(
    107112                        'include'        => $post_ids,
     
    124129        public static function get_featured_post_ids() {
    125130                // Return array of cached results if they exist.
    126131                $featured_ids = get_transient( 'featured_content_ids' );
    127                 if ( ! empty( $featured_ids ) )
     132                if ( ! empty( $featured_ids ) ) {
    128133                        return array_map( 'absint', (array) $featured_ids );
     134                }
    129135
    130136                $settings = self::get_setting();
    131137
    132138                // Return sticky post ids if no tag name is set.
    133139                $term = get_term_by( 'name', $settings['tag-name'], 'post_tag' );
    134                 if ( $term )
     140                if ( $term ) {
    135141                        $tag = $term->term_id;
    136                 else
    137                         return self::get_sticky_posts();
     142                } else {
     143                        return self::get_sticky_posts();       
     144                }
    138145
    139146                // Query for featured posts.
    140147                $featured = get_posts( array(
     
    149156                ) );
    150157
    151158                // Return array with sticky posts if no Featured Content exists.
    152                 if ( ! $featured )
     159                if ( ! $featured ) {
    153160                        return self::get_sticky_posts();
     161                }
    154162
    155163                // Ensure correct format before save/return.
    156164                $featured_ids = wp_list_pluck( (array) $featured, 'ID' );
     
    195203        public static function pre_get_posts( $query = false ) {
    196204
    197205                // Bail if not home, not a query, not main query.
    198                 if ( ! is_a( $query, 'WP_Query' ) || ! $query->is_main_query() || ! is_home() )
     206                if ( ! is_a( $query, 'WP_Query' ) || ! $query->is_main_query() || ! is_home() ) {
    199207                        return;
     208                }
    200209
    201210                $page_on_front = get_option( 'page_on_front' );
    202211
    203212                // Bail if the blog page is not the front page.
    204                 if ( ! empty( $page_on_front ) )
     213                if ( ! empty( $page_on_front ) ) {
    205214                        return;
     215                }
    206216
    207217                $featured = self::get_featured_post_ids();
    208218
    209219                // Bail if no featured posts.
    210                 if ( ! $featured )
    211                         return;
     220                if ( ! $featured ) {
     221                        return;
     222                }
    212223
    213224                // We need to respect post ids already in the blacklist.
    214225                $post__not_in = $query->get( 'post__not_in' );
     
    237248        public static function delete_post_tag( $tag_id ) {
    238249                $settings = self::get_setting();
    239250
    240                 if ( empty( $settings['tag-id'] ) || $tag_id != $settings['tag-id'] )
     251                if ( empty( $settings['tag-id'] ) || $tag_id != $settings['tag-id'] ) {
    241252                        return;
     253                }
    242254
    243255                $settings['tag-id'] = 0;
    244256                $settings = self::validate_settings( $settings );
     
    259271        public static function hide_featured_term( $terms, $taxonomies ) {
    260272
    261273                // This filter is only appropriate on the front-end.
    262                 if ( is_admin() )
     274                if ( is_admin() ) {
    263275                        return $terms;
     276                }
    264277
    265278                // We only want to hide the featured tag.
    266                 if ( ! in_array( 'post_tag', $taxonomies ) )
     279                if ( ! in_array( 'post_tag', $taxonomies ) ) {
    267280                        return $terms;
     281                }
    268282
    269283                // Bail if no terms were returned.
    270                 if ( empty( $terms ) )
     284                if ( empty( $terms ) ) {
    271285                        return $terms;
     286                }
    272287
    273288                foreach( $terms as $order => $term ) {
    274                         if ( self::get_setting( 'tag-id' ) == $term->term_id && 'post_tag' == $term->taxonomy )
     289                        if ( self::get_setting( 'tag-id' ) == $term->term_id && 'post_tag' == $term->taxonomy ) {
    275290                                unset( $terms[ $order ] );
     291                        }
    276292                }
    277293
    278294                return $terms;
     
    293309        public static function hide_the_featured_term( $terms, $id, $taxonomy ) {
    294310
    295311                // This filter is only appropriate on the front-end.
    296                 if ( is_admin() )
     312                if ( is_admin() ) {
    297313                        return $terms;
     314                }
    298315
    299316                // Make sure we are in the correct taxonomy.
    300                 if ( 'post_tag' != $taxonomy )
     317                if ( 'post_tag' != $taxonomy ) {
    301318                        return $terms;
     319                }
    302320
    303321                // No terms? Return early!
    304                 if ( empty( $terms ) )
     322                if ( empty( $terms ) ) {
    305323                        return $terms;
     324                }
    306325
    307326                foreach( $terms as $order => $term ) {
    308                         if ( self::get_setting( 'tag-id' ) == $term->term_id )
     327                        if ( self::get_setting( 'tag-id' ) == $term->term_id ) {
    309328                                unset( $terms[ $term->term_id ] );
     329                        }
    310330                }
    311331
    312332                return $terms;
     
    401421                $options = array_intersect_key( $options, $defaults );
    402422                $options['quantity'] = self::sanitize_quantity( $options['quantity'] );
    403423
    404                 if ( 'all' != $key )
     424                if ( 'all' != $key ) {
    405425                        return isset( $options[ $key ] ) ? $options[ $key ] : false;
     426                }
    406427
    407428                return $options;
    408429        }
     
    437458                        $output['tag-name'] = $input['tag-name'];
    438459                }
    439460
    440                 if ( isset( $input['quantity'] ) )
     461                if ( isset( $input['quantity'] ) ) {
    441462                        $output['quantity'] = self::sanitize_quantity( $input['quantity'] );
     463                }
    442464
    443465                $output['hide-tag'] = isset( $input['hide-tag'] ) && $input['hide-tag'] ? 1 : 0;
    444466
     
    458480        public static function sanitize_quantity( $input ) {
    459481                $quantity = absint( $input );
    460482
    461                 if ( $quantity > self::$max_posts )
     483                if ( $quantity > self::$max_posts ) {
    462484                        $quantity = self::$max_posts;
    463                 else if ( 1 > $quantity )
     485                } else if ( 1 > $quantity ) {
    464486                        $quantity = 1;
     487                }
    465488
    466489                return $quantity;
    467490        }
  • inc/template-tags.php

     
    1717 */
    1818function twentyfourteen_paging_nav() {
    1919        // Don't print empty markup if there's only one page.
    20         if ( $GLOBALS['wp_query']->max_num_pages < 2 )
     20        if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
    2121                return;
     22        }
    2223
    2324        $paged        = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1;
    2425        $pagenum_link = html_entity_decode( get_pagenum_link() );
    2526        $query_args   = array();
    2627        $url_parts    = explode( '?', $pagenum_link );
    2728
    28         if ( isset( $url_parts[1] ) )
     29        if ( isset( $url_parts[1] ) ) {
    2930                wp_parse_str( $url_parts[1], $query_args );
     31        }
    3032
    3133        $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link );
    3234        $pagenum_link = trailingslashit( $pagenum_link ) . '%_%';
     
    7274        $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
    7375        $next     = get_adjacent_post( false, '', false );
    7476
    75         if ( ! $next && ! $previous )
     77        if ( ! $next && ! $previous ) {
    7678                return;
     79        }
    7780
    7881        ?>
    7982        <nav class="navigation post-navigation" role="navigation">
     
    102105 * @return void
    103106 */
    104107function twentyfourteen_posted_on() {
    105         if ( is_sticky() && is_home() && ! is_paged() )
     108        if ( is_sticky() && is_home() && ! is_paged() ) {
    106109                echo '<span class="featured-post">' . __( 'Sticky', 'twentyfourteen' ) . '</span>';
     110        }
    107111
    108112        printf( __( '<span class="entry-date"><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="%4$s" rel="author">%5$s</a></span></span>', 'twentyfourteen' ),
    109113                esc_url( get_permalink() ),
     
    167171 * @return void
    168172*/
    169173function twentyfourteen_post_thumbnail() {
    170         if ( post_password_required() || ! has_post_thumbnail() )
     174        if ( post_password_required() || ! has_post_thumbnail() ) {
    171175                return;
     176        }
    172177
    173178        if ( is_singular() ) :
    174179        ?>
    175180
    176181        <div class="post-thumbnail">
    177182        <?php
    178                 if ( ( ! is_active_sidebar( 'sidebar-2' ) || is_page_template( 'page-templates/full-width.php' ) ) && ! wp_is_mobile() )
     183                if ( ( ! is_active_sidebar( 'sidebar-2' ) || is_page_template( 'page-templates/full-width.php' ) ) && ! wp_is_mobile() ) {
    179184                        the_post_thumbnail( 'twentyfourteen-full-width' );
    180                 else
     185                } else {
    181186                        the_post_thumbnail();
     187                }
    182188        ?>
    183189        </div>
    184190
     
    186192
    187193        <a class="post-thumbnail" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
    188194        <?php
    189                 if ( ( ! is_active_sidebar( 'sidebar-2' ) || is_page_template( 'page-templates/full-width.php' ) ) && ! wp_is_mobile() )
     195                if ( ( ! is_active_sidebar( 'sidebar-2' ) || is_page_template( 'page-templates/full-width.php' ) ) && ! wp_is_mobile() ) {
    190196                        the_post_thumbnail( 'twentyfourteen-full-width' );
    191                 else
     197                } else {
    192198                        the_post_thumbnail();
     199                }
    193200        ?>
    194201        </a>
    195202
  • inc/widgets.php

     
    231231        function update( $new_instance, $instance ) {
    232232                $instance['title']  = strip_tags( $new_instance['title'] );
    233233                $instance['number'] = empty( $new_instance['number'] ) ? 2 : absint( $new_instance['number'] );
    234                 if ( in_array( $new_instance['format'], $this->formats ) )
     234                if ( in_array( $new_instance['format'], $this->formats ) ) {
    235235                        $instance['format'] = $new_instance['format'];
     236                }
    236237
    237238                $this->flush_widget_cache();
    238239
  • index.php

     
    1818<div id="main-content" class="main-content">
    1919
    2020<?php
    21         if ( is_front_page() && twentyfourteen_has_featured_posts() )
     21        if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    2222                get_template_part( 'featured-content' );
     23        }
    2324?>
    2425
    2526        <div id="primary" class="content-area">
  • page-templates/contributors.php

     
    1212<div id="main-content" class="main-content">
    1313
    1414<?php
    15         if ( is_front_page() && twentyfourteen_has_featured_posts() )
     15        if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    1616                get_template_part( 'featured-content' );
     17        }
    1718?>
    1819
    1920        <div id="primary" class="content-area">
     
    3536
    3637                        <?php
    3738                                        // If comments are open or we have at least one comment, load up the comment template.
    38                                         if ( comments_open() || get_comments_number() )
     39                                        if ( comments_open() || get_comments_number() ) {
    3940                                                comments_template();
     41                                        }
    4042                                endwhile;
    4143                        ?>
    4244                </div><!-- #content -->
  • page-templates/full-width.php

     
    1212<div id="main-content" class="main-content">
    1313
    1414<?php
    15         if ( is_front_page() && twentyfourteen_has_featured_posts() )
     15        if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    1616                get_template_part( 'featured-content' );
     17        }
    1718?>
    1819
    1920        <div id="primary" class="content-area">
     
    2526                                        get_template_part( 'content', 'page' );
    2627
    2728                                        // If comments are open or we have at least one comment, load up the comment template.
    28                                         if ( comments_open() || get_comments_number() )
     29                                        if ( comments_open() || get_comments_number() ) {
    2930                                                comments_template();
     31                                        }
    3032                                endwhile;
    3133                        ?>
    3234                </div><!-- #content -->
  • page.php

     
    1616<div id="main-content" class="main-content">
    1717
    1818<?php
    19         if ( is_front_page() && twentyfourteen_has_featured_posts() )
     19        if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    2020                get_template_part( 'featured-content' );
     21        }
    2122?>
    2223        <div id="primary" class="content-area">
    2324                <div id="content" class="site-content" role="main">
     
    2930                                        get_template_part( 'content', 'page' );
    3031
    3132                                        // If comments are open or we have at least one comment, load up the comment template.
    32                                         if ( comments_open() || get_comments_number() )
     33                                        if ( comments_open() || get_comments_number() ) {
    3334                                                comments_template();
     35                                        }
    3436                                endwhile;
    3537                        ?>
    3638
  • sidebar-content.php

     
    77 * @since Twenty Fourteen 1.0
    88 */
    99
    10 if ( ! is_active_sidebar( 'sidebar-2' ) )
     10if ( ! is_active_sidebar( 'sidebar-2' ) ) {
    1111        return;
     12}
    1213?>
    1314<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
    1415        <?php dynamic_sidebar( 'sidebar-2' ); ?>
  • sidebar-footer.php

     
    77 * @since Twenty Fourteen 1.0
    88 */
    99
    10 if ( ! is_active_sidebar( 'sidebar-3' ) )
     10if ( ! is_active_sidebar( 'sidebar-3' ) ) {
    1111        return;
     12}
    1213?>
    1314
    1415<div id="supplementary">
  • single.php

     
    2020                                        twentyfourteen_post_nav();
    2121
    2222                                        // If comments are open or we have at least one comment, load up the comment template.
    23                                         if ( comments_open() || get_comments_number() )
     23                                        if ( comments_open() || get_comments_number() ) {
    2424                                                comments_template();
     25                                        }
    2526                                endwhile;
    2627                        ?>
    2728                </div><!-- #content -->