- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-image.php
r45675 r45932 42 42 <?php 43 43 printf( 44 /* translators: 1: the permalink, 2: date and time, 3: date and time, 4: author link, 5: author link title, 6: author display name*/44 /* translators: 1: The permalink, 2: Date and time, 3: Date and time, 4: Author link, 5: Author link title, 6: Author display name. */ 45 45 __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s" rel="author">%6$s</a></span></span>', 'twentyeleven' ), 46 46 esc_url( get_permalink() ), … … 48 48 get_the_date(), 49 49 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 50 /* translators: %s: author display name*/50 /* translators: %s: Author display name. */ 51 51 esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ), 52 52 get_the_author() … … 56 56 <div class="entry-meta"> 57 57 <?php 58 /* translators: used between list items, there is a space after the comma*/58 /* translators: Used between list items, there is a space after the comma. */ 59 59 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 60 60 if ( $categories_list ) : … … 62 62 <span class="cat-links"> 63 63 <?php 64 /* translators: 1: CSS classes, 2: category list*/64 /* translators: 1: CSS classes, 2: Category list. */ 65 65 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); 66 66 ?> … … 68 68 <?php endif; // End if categories ?> 69 69 <?php 70 /* translators: used between list items, there is a space after the comma*/70 /* translators: Used between list items, there is a space after the comma. */ 71 71 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 72 72 if ( $tags_list ) : … … 74 74 <span class="tag-links"> 75 75 <?php 76 /* translators: 1: CSS classes, 2: tag list*/76 /* translators: 1: CSS classes, 2: Tag list. */ 77 77 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 78 78 ?>
Note: See TracChangeset
for help on using the changeset viewer.