Ticket #12542: 12542.patch
| File 12542.patch, 2.2 KB (added by , 16 years ago) |
|---|
-
wp-content/themes/twentyten/header.php
30 30 <div id="header"> 31 31 <div id="masthead"> 32 32 <div id="branding"> 33 <div id="site-title"><span><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div> 33 <?php $header_element = is_front_page() ? 'h1' : 'div'; ?> 34 <<?php echo $header_element; ?> id="site-title"><span><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></<?php echo $header_element; ?>> 34 35 <div id="site-description"><?php bloginfo( 'description' ); ?></div> 35 36 36 37 <?php -
wp-content/themes/twentyten/onecolumn-page.php
12 12 <?php the_post(); ?> 13 13 14 14 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 15 <?php if(!is_front_page()): ?> 15 16 <h1 class="entry-title"><?php the_title(); ?></h1> 17 <?php endif; ?> 16 18 <div class="entry-content"> 17 19 <?php the_content(); ?> 18 20 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?> -
wp-content/themes/twentyten/page.php
6 6 <?php the_post(); ?> 7 7 8 8 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 9 <?php if(!is_front_page()) : ?> 9 10 <h1 class="entry-title"><?php the_title(); ?></h1> 11 <?php endif; ?> 10 12 <div class="entry-content"> 11 13 <?php the_content(); ?> 12 14 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>