Changeset 45042
- Timestamp:
- 03/27/2019 09:58:38 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/header.php
r44500 r45042 74 74 75 75 <body <?php body_class(); ?>> 76 <?php wp_body_open(); ?> 76 77 <div id="page" class="hfeed"> 77 78 <header id="branding" role="banner"> -
trunk/src/wp-content/themes/twentyfifteen/header.php
r44574 r45042 23 23 24 24 <body <?php body_class(); ?>> 25 <?php wp_body_open(); ?> 25 26 <div id="page" class="hfeed site"> 26 27 <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyfifteen' ); ?></a> -
trunk/src/wp-content/themes/twentyfourteen/header.php
r44500 r45042 32 32 33 33 <body <?php body_class(); ?>> 34 <?php wp_body_open(); ?> 34 35 <div id="page" class="hfeed site"> 35 36 <?php if ( get_header_image() ) : ?> -
trunk/src/wp-content/themes/twentynineteen/header.php
r44305 r45042 21 21 22 22 <body <?php body_class(); ?>> 23 <?php wp_body_open(); ?> 23 24 <div id="page" class="site"> 24 25 <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentynineteen' ); ?></a> -
trunk/src/wp-content/themes/twentyseventeen/header.php
r39624 r45042 24 24 25 25 <body <?php body_class(); ?>> 26 <?php wp_body_open(); ?> 26 27 <div id="page" class="site"> 27 28 <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyseventeen' ); ?></a> -
trunk/src/wp-content/themes/twentysixteen/header.php
r44574 r45042 23 23 24 24 <body <?php body_class(); ?>> 25 <?php wp_body_open(); ?> 25 26 <div id="page" class="site"> 26 27 <div class="site-inner"> -
trunk/src/wp-content/themes/twentyten/header.php
r44500 r45042 61 61 62 62 <body <?php body_class(); ?>> 63 <?php wp_body_open(); ?> 63 64 <div id="wrapper" class="hfeed"> 64 65 <div id="header"> -
trunk/src/wp-content/themes/twentythirteen/header.php
r44500 r45042 32 32 33 33 <body <?php body_class(); ?>> 34 <?php wp_body_open(); ?> 34 35 <div id="page" class="hfeed site"> 35 36 <header id="masthead" class="site-header" role="banner"> -
trunk/src/wp-content/themes/twentytwelve/header.php
r44500 r45042 33 33 34 34 <body <?php body_class(); ?>> 35 <?php wp_body_open(); ?> 35 36 <div id="page" class="hfeed site"> 36 37 <header id="masthead" class="site-header" role="banner"> -
trunk/src/wp-includes/general-template.php
r45028 r45042 2753 2753 2754 2754 /** 2755 * Fire the wp_body_open action. 2756 * 2757 * * See {@see 'wp_body_open'}. 2758 * 2759 * @since 5.2.0 2760 */ 2761 function wp_body_open() { 2762 /** 2763 * Triggered after the opening <body> tag. 2764 * 2765 * @since 5.2.0 2766 */ 2767 do_action( 'wp_body_open' ); 2768 } 2769 2770 /** 2755 2771 * Display the links to the general feeds. 2756 2772 *
Note: See TracChangeset
for help on using the changeset viewer.