Make WordPress Core


Ignore:
Timestamp:
03/16/2010 08:17:22 PM (15 years ago)
Author:
iammattthomas
Message:

Coding standards cleanup in twentyten, see #9015. Props sivel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyten/sidebar-footer.php

    r13128 r13720  
    11<?php
    2     if ( is_active_sidebar('first-footer-widget-area') ||
    3         is_active_sidebar('second-footer-widget-area') ||
    4         is_active_sidebar('third-footer-widget-area') ||
    5         is_active_sidebar('fourth-footer-widget-area') ) :
     2    if (
     3        is_active_sidebar( 'first-footer-widget-area' )  ||
     4        is_active_sidebar( 'second-footer-widget-area' ) ||
     5        is_active_sidebar( 'third-footer-widget-area' )  ||
     6        is_active_sidebar( 'fourth-footer-widget-area' )
     7    ) :
    68?>
    79            <div id="footer-widget-area">
    8 <?php if ( is_active_sidebar('first-footer-widget-area') ) : ?>
     10<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
    911                    <div id="first" class="widget-area">
    1012                        <ul class="xoxo">
     
    1416<?php endif; ?>
    1517
    16 <?php if ( is_active_sidebar('second-footer-widget-area') ) : ?>
     18<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
    1719                <div id="second" class="widget-area">
    1820                    <ul class="xoxo">
     
    2224<?php endif; ?>
    2325
    24 <?php if ( is_active_sidebar('third-footer-widget-area') ) : ?>
     26<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
    2527                <div id="third" class="widget-area">
    2628                    <ul class="xoxo">
     
    3032<?php endif; ?>
    3133
    32 <?php if ( is_active_sidebar('fourth-footer-widget-area') ) : ?>
     34<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
    3335                <div id="fourth" class="widget-area">
    3436                    <ul class="xoxo">
Note: See TracChangeset for help on using the changeset viewer.