Make WordPress Core

Ticket #30057: 30057.patch

File 30057.patch, 710 bytes (added by rianrietveld, 10 years ago)

Replaces the H2 for a p for the site description in header.php

  • header.php

     
    3030                <header id="masthead" class="site-header" role="banner">
    3131                        <div class="site-branding">
    3232                                <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    33                                 <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
     33                                <p class="site-description"><?php bloginfo( 'description' ); ?></p>
    3434                                <button class="secondary-toggle"><?php esc_html_e( 'Menu and widgets', 'twentyfifteen' ); ?></button>
    3535                        </div><!-- .site-branding -->
    3636                </header><!-- .site-header -->