Changeset 54923
- Timestamp:
- 12/01/2022 09:54:57 PM (2 years ago)
- Location:
- trunk/src/wp-content/themes/twentythirteen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/author.php
r47122 r54923 32 32 <?php 33 33 /* translators: %s: Author display name. */ 34 printf( __( 'All posts by %s', 'twentythirteen' ), '<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>' );34 printf( __( 'All posts by %s', 'twentythirteen' ), '<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>' ); 35 35 ?> 36 36 </h1> -
trunk/src/wp-content/themes/twentythirteen/header.php
r54405 r54923 35 35 <div id="page" class="hfeed site"> 36 36 <header id="masthead" class="site-header"> 37 <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"rel="home">37 <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> 38 38 <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1> 39 39 <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> … … 43 43 <nav id="site-navigation" class="navigation main-navigation"> 44 44 <button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button> 45 <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>45 <a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a> 46 46 <?php 47 47 wp_nav_menu(
Note: See TracChangeset
for help on using the changeset viewer.