Make WordPress Core


Ignore:
Timestamp:
11/18/2013 11:11:01 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: updates all PHP files to meet new brace style in WP coding standards. Props rickalee for initial patch, fixes #26093.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/page.php

    r25985 r26260  
    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">
     
    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            ?>
Note: See TracChangeset for help on using the changeset viewer.