Changeset 54344
- Timestamp:
- 09/28/2022 12:38:49 PM (2 years ago)
- Location:
- trunk/src/wp-content/themes/twentyten
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/functions.php
r54341 r54344 614 614 sprintf( 615 615 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 616 get_author_posts_url( get_the_author_meta( 'ID') ),616 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 617 617 /* translators: %s: Author display name. */ 618 618 esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ), -
trunk/src/wp-content/themes/twentyten/loop-attachment.php
r51553 r54344 46 46 sprintf( 47 47 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', 48 get_author_posts_url( get_the_author_meta( 'ID') ),48 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 49 49 /* translators: %s: Author display name. */ 50 50 esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
Note: See TracChangeset
for help on using the changeset viewer.