Make WordPress Core

Changeset 48410


Ignore:
Timestamp:
07/08/2020 01:42:30 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Widgets: Adjust formatting for displaying the closing </nav> tag in widgets for consistency with the opening tag.

Follow-up to [48349].

See #48170.

Location:
trunk/src/wp-includes/widgets
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/widgets/class-wp-widget-archives.php

    r48409 r48410  
    163163            </ul>
    164164
    165             <?php if ( 'html5' === $format ) : ?>
    166                 </nav>
    167             <?php endif; ?>
    168 
    169165            <?php
     166            if ( 'html5' === $format ) {
     167                echo '</nav>';
     168            }
    170169        }
    171170
  • trunk/src/wp-includes/widgets/class-wp-widget-categories.php

    r48388 r48410  
    141141            </ul>
    142142
    143             <?php if ( 'html5' === $format ) : ?>
    144                 </nav>
    145             <?php endif; ?>
    146 
    147143            <?php
     144            if ( 'html5' === $format ) {
     145                echo '</nav>';
     146            }
    148147        }
    149148
  • trunk/src/wp-includes/widgets/class-wp-widget-meta.php

    r48409 r48410  
    9999        </ul>
    100100
    101         <?php if ( 'html5' === $format ) : ?>
    102             </nav>
    103         <?php endif; ?>
     101        <?php
     102        if ( 'html5' === $format ) {
     103            echo '</nav>';
     104        }
    104105
    105         <?php
    106106        echo $args['after_widget'];
    107107    }
  • trunk/src/wp-includes/widgets/class-wp-widget-pages.php

    r48388 r48410  
    109109            </ul>
    110110
    111             <?php if ( 'html5' === $format ) : ?>
    112                 </nav>
    113             <?php endif; ?>
     111            <?php
     112            if ( 'html5' === $format ) {
     113                echo '</nav>';
     114            }
    114115
    115             <?php
    116116            echo $args['after_widget'];
    117117        }
  • trunk/src/wp-includes/widgets/class-wp-widget-recent-posts.php

    r48409 r48410  
    127127        </ul>
    128128
    129         <?php if ( 'html5' === $format ) : ?>
    130             </nav>
    131         <?php endif; ?>
     129        <?php
     130        if ( 'html5' === $format ) {
     131            echo '</nav>';
     132        }
    132133
    133         <?php
    134134        echo $args['after_widget'];
    135135    }
Note: See TracChangeset for help on using the changeset viewer.