Changeset 54922
- Timestamp:
- 12/01/2022 09:51:48 PM (2 years ago)
- Location:
- trunk/src/wp-content/themes/twentyten
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/author.php
r48782 r54922 30 30 <?php 31 31 /* translators: %s: Author display name. */ 32 printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '"rel="me">' . get_the_author() . '</a></span>' );32 printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" rel="me">' . get_the_author() . '</a></span>' ); 33 33 ?> 34 34 </h1> -
trunk/src/wp-content/themes/twentyten/footer.php
r45609 r54922 25 25 26 26 <div id="site-info"> 27 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"rel="home">27 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> 28 28 <?php bloginfo( 'name' ); ?> 29 29 </a> -
trunk/src/wp-content/themes/twentyten/header.php
r54492 r54922 70 70 <<?php echo $heading_tag; ?> id="site-title"> 71 71 <span> 72 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"rel="home"><?php bloginfo( 'name' ); ?></a>72 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> 73 73 </span> 74 74 </<?php echo $heading_tag; ?>> … … 113 113 <div id="access" role="navigation"> 114 114 <?php // Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. ?> 115 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>115 <div class="skip-link screen-reader-text"><a href="#content"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> 116 116 <?php 117 117 /*
Note: See TracChangeset
for help on using the changeset viewer.