Make WordPress Core


Ignore:
Timestamp:
09/30/2019 05:40:14 PM (5 years ago)
Author:
desrosj
Message:

Bundled Themes: Update Twenty Twenty.

This brings trunk’s version of Twenty Twenty in-sync with GitHub.

For a complete list of changes since [46271], see https://github.com/WordPress/twentytwenty/compare/932b16248...dd7032f

Props anlino, ianbelanger, nielslange, acosmin, netweb, williampatton, adhitya03, phpdocs, acalfieri, itowhid06, littlebigthing, aristath, karmatosed, poena.
See #48110.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwenty/header.php

    r46271 r46357  
    1717    <head>
    1818
    19         <meta http-equiv="content-type" content="<?php bloginfo( 'html_type' ); ?>" charset="<?php bloginfo( 'charset' ); ?>" />
     19        <meta charset="<?php bloginfo( 'charset' ); ?>">
    2020        <meta name="viewport" content="width=device-width, initial-scale=1.0" >
    2121
     
    4949                        <button class="toggle search-toggle mobile-search-toggle" data-toggle-target=".search-modal" data-toggle-screen-lock="true" data-toggle-body-class="showing-search-modal" data-set-focus=".search-modal .search-field" aria-expanded="false">
    5050                            <div class="toggle-inner">
    51                                 <?php twentytwenty_the_theme_svg( 'search' ); ?>
     51                                <div class="toggle-icon">
     52                                    <?php twentytwenty_the_theme_svg( 'search' ); ?>
     53                                </div>
    5254                                <span class="toggle-text"><?php _e( 'Search', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></span>
    5355                            </div>
     
    7072                    <button class="toggle nav-toggle mobile-nav-toggle" data-toggle-target=".menu-modal" data-toggle-screen-lock="true" data-toggle-body-class="showing-menu-modal" aria-expanded="false" data-set-focus=".close-nav-toggle">
    7173                        <div class="toggle-inner">
    72                             <?php twentytwenty_the_theme_svg( 'ellipsis' ); ?>
     74                            <div class="toggle-icon">
     75                                <?php twentytwenty_the_theme_svg( 'ellipsis' ); ?>
     76                            </div>
    7377                            <span class="toggle-text"><?php _e( 'Menu', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></span>
    7478                        </div>
     
    8387                        ?>
    8488
    85                         <div class="primary-menu-wrapper">
    86 
    87                             <nav aria-label="<?php esc_attr_e( 'Primary', 'twentytwenty' ); ?>">
     89                            <nav class="primary-menu-wrapper" aria-label="<?php esc_attr_e( 'Horizontal', 'twentytwenty' ); ?>" role="navigation">
    8890
    8991                                <ul class="primary-menu reset-list-style">
     
    116118                                </ul>
    117119
    118                             </nav><!-- .primary-menu -->
    119 
    120                         </div><!-- .primary-menu-wrapper -->
     120                            </nav><!-- .primary-menu-wrapper -->
    121121
    122122                        <?php
     
    146146                                <div class="toggle-inner">
    147147                                    <span class="toggle-text"><?php _e( 'Menu', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></span>
    148                                     <?php twentytwenty_the_theme_svg( 'ellipsis' ); ?>
     148                                    <div class="toggle-icon">
     149                                        <?php twentytwenty_the_theme_svg( 'ellipsis' ); ?>
     150                                    </div>
    149151                                </div>
    150152                            </button><!-- .nav-toggle -->
Note: See TracChangeset for help on using the changeset viewer.