Ticket #17611: 17611-heading-corrections.diff
File 17611-heading-corrections.diff, 15.5 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentyeleven/content-aside.php
13 13 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 14 14 <header class="entry-header"> 15 15 <hgroup> 16 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>17 <h 2 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h2>16 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 17 <h3 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h3> 18 18 </hgroup> 19 19 20 20 <?php if ( comments_open() ) : ?> -
wp-content/themes/twentyeleven/content-intro.php
10 10 11 11 <article id="post-<?php the_ID(); ?>" <?php post_class( 'intro' ); ?>> 12 12 <header class="entry-header"> 13 <h 1 class="entry-title"><?php the_title(); ?></h1>13 <h2 class="entry-title"><?php the_title(); ?></h2> 14 14 </header><!-- .entry-header --> 15 15 16 16 <div class="entry-content"> -
wp-content/themes/twentyeleven/content-link.php
13 13 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 14 14 <header class="entry-header"> 15 15 <hgroup> 16 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>17 <h 2 class="entry-format"><?php _e( 'Link', 'twentyeleven' ); ?></h2>16 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 17 <h3 class="entry-format"><?php _e( 'Link', 'twentyeleven' ); ?></h3> 18 18 </hgroup> 19 19 20 20 <?php if ( comments_open() ) : ?> -
wp-content/themes/twentyeleven/content-featured.php
11 11 ?> 12 12 <article id="post-<?php the_ID(); ?>" <?php post_class( $feature_class ); ?>> 13 13 <header class="entry-header"> 14 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>14 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 15 15 16 16 <div class="entry-meta"> 17 17 <?php twentyeleven_posted_on(); ?> -
wp-content/themes/twentyeleven/content.php
12 12 <header class="entry-header"> 13 13 <?php if ( is_sticky() ) : ?> 14 14 <hgroup> 15 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>16 <h 2 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h2>15 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 16 <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3> 17 17 </hgroup> 18 18 <?php else : ?> 19 19 <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> -
wp-content/themes/twentyeleven/showcase.php
208 208 <?php if ( ! dynamic_sidebar( 'sidebar-2' ) ) : ?> 209 209 210 210 <?php 211 the_widget( 'Twenty_Eleven_Ephemera_Widget', '', 'before_title=<h 1 class="widget-title">&after_title=</h1>' );211 the_widget( 'Twenty_Eleven_Ephemera_Widget', '', 'before_title=<h3 class="widget-title">&after_title=</h3>' ); 212 212 ?> 213 213 214 214 <?php endif; // end sidebar widget area ?> -
wp-content/themes/twentyeleven/single.php
15 15 <?php while ( have_posts() ) : the_post(); ?> 16 16 17 17 <nav id="nav-single"> 18 <h 1 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h1>18 <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> 19 19 <span class="nav-previous"><?php previous_post_link( '%link', __( '← Previous', 'twentyeleven' ) ); ?></span> 20 20 <span class="nav-next"><?php next_post_link( '%link', __( 'Next →', 'twentyeleven' ) ); ?></span> 21 21 </nav><!-- #nav-single --> 22 22 23 23 <?php get_template_part( 'content', 'single' ); ?> 24 24 25 <?php twentyeleven_content_nav( 'nav-below' ); ?>26 27 25 <?php comments_template( '', true ); ?> 28 26 29 27 <?php endwhile; // end of the loop. ?> -
wp-content/themes/twentyeleven/header.php
110 110 <?php endif; ?> 111 111 112 112 <nav id="access" role="navigation"> 113 <h 1 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h1>113 <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3> 114 114 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?> 115 115 <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div> 116 116 <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div> -
wp-content/themes/twentyeleven/content-image.php
12 12 <article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>> 13 13 <header class="entry-header"> 14 14 <hgroup> 15 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>16 <h 2 class="entry-format"><?php _e( 'Image', 'twentyeleven' ); ?></h2>15 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 16 <h3 class="entry-format"><?php _e( 'Image', 'twentyeleven' ); ?></h3> 17 17 </hgroup> 18 18 19 19 <?php if ( comments_open() ) : ?> -
wp-content/themes/twentyeleven/content-status.php
12 12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 13 13 <header class="entry-header"> 14 14 <hgroup> 15 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>16 <h 2 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h2>15 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 16 <h3 class="entry-format"><?php _e( 'Status', 'twentyeleven' ); ?></h3> 17 17 </hgroup> 18 18 19 19 <?php if ( comments_open() ) : ?> -
wp-content/themes/twentyeleven/content-quote.php
11 11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 12 12 <header class="entry-header"> 13 13 <hgroup> 14 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>15 <h 2 class="entry-format"><?php _e( 'Quote', 'twentyeleven' ); ?></h2>14 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 15 <h3 class="entry-format"><?php _e( 'Quote', 'twentyeleven' ); ?></h3> 16 16 </hgroup> 17 17 18 18 <div class="entry-meta"> -
wp-content/themes/twentyeleven/content-gallery.php
13 13 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 14 14 <header class="entry-header"> 15 15 <hgroup> 16 <h 1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>17 <h 2 class="entry-format"><?php _e( 'Gallery', 'twentyeleven' ); ?></h2>16 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 17 <h3 class="entry-format"><?php _e( 'Gallery', 'twentyeleven' ); ?></h3> 18 18 </hgroup> 19 19 20 20 <div class="entry-meta"> -
wp-content/themes/twentyeleven/functions.php
375 375 'id' => 'sidebar-1', 376 376 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 377 377 'after_widget' => "</aside>", 378 'before_title' => '<h 1class="widget-title">',379 'after_title' => '</h 1>',378 'before_title' => '<h3 class="widget-title">', 379 'after_title' => '</h3>', 380 380 ) ); 381 381 382 382 register_sidebar( array( … … 385 385 'description' => __( 'The sidebar for the optional Showcase Template', 'twentyeleven' ), 386 386 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 387 387 'after_widget' => "</aside>", 388 'before_title' => '<h 1class="widget-title">',389 'after_title' => '</h 1>',388 'before_title' => '<h3 class="widget-title">', 389 'after_title' => '</h3>', 390 390 ) ); 391 391 392 392 register_sidebar( array( … … 395 395 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 396 396 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 397 397 'after_widget' => "</aside>", 398 'before_title' => '<h 1class="widget-title">',399 'after_title' => '</h 1>',398 'before_title' => '<h3 class="widget-title">', 399 'after_title' => '</h3>', 400 400 ) ); 401 401 402 402 register_sidebar( array( … … 405 405 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 406 406 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 407 407 'after_widget' => "</aside>", 408 'before_title' => '<h 1class="widget-title">',409 'after_title' => '</h 1>',408 'before_title' => '<h3 class="widget-title">', 409 'after_title' => '</h3>', 410 410 ) ); 411 411 412 412 register_sidebar( array( … … 415 415 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 416 416 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 417 417 'after_widget' => "</aside>", 418 'before_title' => '<h 1class="widget-title">',419 'after_title' => '</h 1>',418 'before_title' => '<h3 class="widget-title">', 419 'after_title' => '</h3>', 420 420 ) ); 421 421 } 422 422 add_action( 'widgets_init', 'twentyeleven_widgets_init' ); … … 429 429 430 430 if ( $wp_query->max_num_pages > 1 ) : ?> 431 431 <nav id="<?php echo $nav_id; ?>"> 432 <h 1 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h1>432 <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> 433 433 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyeleven' ) ); ?></div> 434 434 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></div> 435 435 </nav><!-- #nav-above --> -
wp-content/themes/twentyeleven/sidebar.php
16 16 <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?> 17 17 18 18 <aside id="archives" class="widget"> 19 <h 1 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h1>19 <h3 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h3> 20 20 <ul> 21 21 <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> 22 22 </ul> 23 23 </aside> 24 24 25 25 <aside id="meta" class="widget"> 26 <h 1 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h1>26 <h3 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h3> 27 27 <ul> 28 28 <?php wp_register(); ?> 29 29 <li><?php wp_loginout(); ?></li> -
wp-content/themes/twentyeleven/image.php
15 15 <?php the_post(); ?> 16 16 17 17 <nav id="nav-single"> 18 <h3 class="assistive-text"><?php _e( 'Image navigation', 'twentyeleven' ); ?></h3> 18 19 <span class="nav-previous"><?php previous_image_link( false, __( '← Previous' , 'twentyeleven' ) ); ?></span> 19 20 <span class="nav-next"><?php next_image_link( false, __( 'Next →' , 'twentyeleven' ) ); ?></span> 20 21 </nav><!-- #nav-single -->