Make WordPress Core

Ticket #12563: 12563.5.diff

File 12563.5.diff, 4.8 KB (added by adamsilverstein, 6 years ago)
  • src/wp-content/themes/twentyeleven/header.php

    diff --git src/wp-content/themes/twentyeleven/header.php src/wp-content/themes/twentyeleven/header.php
    index e27cac9316..39cbe89c11 100644
    if ( is_singular() && get_option( 'thread_comments' ) ) { 
    7373</head>
    7474
    7575<body <?php body_class(); ?>>
     76<?php wp_body_open(); ?>
    7677<div id="page" class="hfeed">
    7778        <header id="branding" role="banner">
    7879                        <hgroup>
  • src/wp-content/themes/twentyfifteen/header.php

    diff --git src/wp-content/themes/twentyfifteen/header.php src/wp-content/themes/twentyfifteen/header.php
    index 63b0437771..41a1e8df7f 100644
     
    2222</head>
    2323
    2424<body <?php body_class(); ?>>
     25<?php wp_body_open(); ?>
    2526<div id="page" class="hfeed site">
    2627        <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyfifteen' ); ?></a>
    2728
  • src/wp-content/themes/twentyfourteen/header.php

    diff --git src/wp-content/themes/twentyfourteen/header.php src/wp-content/themes/twentyfourteen/header.php
    index 1de76b341f..88071ec9b9 100644
     
    3131</head>
    3232
    3333<body <?php body_class(); ?>>
     34<?php wp_body_open(); ?>
    3435<div id="page" class="hfeed site">
    3536        <?php if ( get_header_image() ) : ?>
    3637        <div id="site-header">
  • src/wp-content/themes/twentynineteen/header.php

    diff --git src/wp-content/themes/twentynineteen/header.php src/wp-content/themes/twentynineteen/header.php
    index 53827f8ed5..868a521944 100644
     
    2020</head>
    2121
    2222<body <?php body_class(); ?>>
     23<?php wp_body_open(); ?>
    2324<div id="page" class="site">
    2425        <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentynineteen' ); ?></a>
    2526
  • src/wp-content/themes/twentyseventeen/header.php

    diff --git src/wp-content/themes/twentyseventeen/header.php src/wp-content/themes/twentyseventeen/header.php
    index 27148be6d4..0ac11c30ec 100644
     
    2323</head>
    2424
    2525<body <?php body_class(); ?>>
     26<?php wp_body_open(); ?>
    2627<div id="page" class="site">
    2728        <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyseventeen' ); ?></a>
    2829
  • src/wp-content/themes/twentysixteen/header.php

    diff --git src/wp-content/themes/twentysixteen/header.php src/wp-content/themes/twentysixteen/header.php
    index f264ac2cd7..a5cfee6a47 100644
     
    2222</head>
    2323
    2424<body <?php body_class(); ?>>
     25<?php wp_body_open(); ?>
    2526<div id="page" class="site">
    2627        <div class="site-inner">
    2728                <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
  • src/wp-content/themes/twentyten/header.php

    diff --git src/wp-content/themes/twentyten/header.php src/wp-content/themes/twentyten/header.php
    index 1a4b35afea..23a186340a 100644
    if ( is_singular() && get_option( 'thread_comments' ) ) { 
    6060</head>
    6161
    6262<body <?php body_class(); ?>>
     63<?php wp_body_open(); ?>
    6364<div id="wrapper" class="hfeed">
    6465        <div id="header">
    6566                <div id="masthead">
  • src/wp-content/themes/twentythirteen/header.php

    diff --git src/wp-content/themes/twentythirteen/header.php src/wp-content/themes/twentythirteen/header.php
    index 31fbfaba07..dee665689b 100644
     
    3131</head>
    3232
    3333<body <?php body_class(); ?>>
     34        <?php wp_body_open(); ?>
    3435        <div id="page" class="hfeed site">
    3536                <header id="masthead" class="site-header" role="banner">
    3637                        <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
  • src/wp-content/themes/twentytwelve/header.php

    diff --git src/wp-content/themes/twentytwelve/header.php src/wp-content/themes/twentytwelve/header.php
    index 107c0a1850..f8ff59907b 100644
     
    3232</head>
    3333
    3434<body <?php body_class(); ?>>
     35<?php wp_body_open(); ?>
    3536<div id="page" class="hfeed site">
    3637        <header id="masthead" class="site-header" role="banner">
    3738                <hgroup>
  • src/wp-includes/general-template.php

    diff --git src/wp-includes/general-template.php src/wp-includes/general-template.php
    index 837770f519..3aaf2f019f 100644
    function wp_footer() { 
    27512751        do_action( 'wp_footer' );
    27522752}
    27532753
     2754/**
     2755 * Fire the wp_body_open action
     2756 *
     2757 * * See {@see 'wp_body_open'}.
     2758 *
     2759 * @since 5.0
     2760 */
     2761function wp_body_open() {
     2762        /**
     2763         * Allows access to templates after the opening <body> tag.
     2764         *
     2765         * @since 5.0
     2766         */
     2767        do_action( 'wp_body_open' );
     2768}
     2769
    27542770/**
    27552771 * Display the links to the general feeds.
    27562772 *