Ticket #12563: body_open.diff
File body_open.diff, 1.6 KB (added by , 15 years ago) |
---|
-
wp-includes/general-template.php
1565 1565 } 1566 1566 1567 1567 /** 1568 * Fire the wp_body_open action 1569 * 1570 * @since 3.1 1571 * @uses do_action() Calls 'wp_body_open' hook. 1572 */ 1573 function wp_body_open() { 1574 do_action('wp_body_open'); 1575 } 1576 1577 /** 1568 1578 * Display the links to the general feeds. 1569 1579 * 1570 1580 * @since 2.8.0 -
wp-content/themes/classic/header.php
23 23 </head> 24 24 25 25 <body <?php body_class(); ?>> 26 <?php wp_body_open(); ?> 26 27 <div id="rap"> 27 28 <h1 id="header"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> 28 29 -
wp-content/themes/twentyten/header.php
26 26 </head> 27 27 28 28 <body <?php body_class(); ?>> 29 <?php wp_body_open(); ?> 29 30 <div id="wrapper" class="hfeed"> 30 31 <div id="header"> 31 32 <div id="masthead"> -
wp-content/themes/default/header.php
33 33 <?php wp_head(); ?> 34 34 </head> 35 35 <body <?php body_class(); ?>> 36 <?php wp_body_open(); ?> 36 37 <div id="page"> 37 38 38 39