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/page.php

    r44149 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
     
    3333
    3434        </main><!-- #main -->
    35     </section><!-- #primary -->
     35    </div><!-- #primary -->
    3636
    3737<?php
Note: See TracChangeset for help on using the changeset viewer.