Make WordPress Core


Ignore:
Timestamp:
09/04/2019 04:26:50 PM (5 years ago)
Author:
afercia
Message:

Bundled Theme: Twenty Nineteen: Fix the nesting of the main element.

The main element must not appear as a descendant of the section element. Correct markup is the first requirement to make user agents and assistive technologies work properly.

Changes the <section> element that was wrapping the <main> element to a <div>.

Props albertomake, ryelle, desrosj, ianbelanger, audrasjb.
Fixes #47066.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentynineteen/single.php

    r45932 r45942  
    1313?>
    1414
    15     <section id="primary" class="content-area">
     15    <div id="primary" class="content-area">
    1616        <main id="main" class="site-main">
    1717
     
    5555
    5656        </main><!-- #main -->
    57     </section><!-- #primary -->
     57    </div><!-- #primary -->
    5858
    5959<?php
Note: See TracChangeset for help on using the changeset viewer.