- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/loop-attachment.php
r45675 r45932 24 24 <?php 25 25 if ( ! empty( $post->post_parent ) ) : 26 /* translators: %s: post title*/26 /* translators: %s: Post title. */ 27 27 $post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ); 28 28 ?> 29 29 <p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery"> 30 31 /* translators: %s: title of parent post*/32 33 30 <?php 31 /* translators: %s: Title of parent post. */ 32 printf( __( '<span class="meta-nav">←</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) ); 33 ?> 34 34 </a></p> 35 35 <?php endif; ?> … … 41 41 <?php 42 42 printf( 43 /* translators: %s: author display name*/43 /* translators: %s: Author display name. */ 44 44 __( '<span class="%1$s">By</span> %2$s', 'twentyten' ), 45 45 'meta-prep meta-prep-author', … … 47 47 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', 48 48 get_author_posts_url( get_the_author_meta( 'ID' ) ), 49 /* translators: %s: author display name*/49 /* translators: %s: Author display name. */ 50 50 esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ), 51 51 get_the_author() … … 56 56 <?php 57 57 printf( 58 /* translators: 1: CSS classes : 2: date*/58 /* translators: 1: CSS classes, 2: Date. */ 59 59 __( '<span class="%1$s">Published</span> %2$s', 'twentyten' ), 60 60 'meta-prep meta-prep-entry-date', … … 69 69 $metadata = wp_get_attachment_metadata(); 70 70 printf( 71 /* translators: %s: image dimensions*/71 /* translators: %s: Image dimensions. */ 72 72 __( 'Full size is %s pixels', 'twentyten' ), 73 73 sprintf(
Note: See TracChangeset
for help on using the changeset viewer.