- Timestamp:
- 09/03/2019 12:39:13 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-quote.php
r45604 r45932 48 48 <?php $show_sep = false; ?> 49 49 <?php 50 /* translators: used between list items, there is a space after the comma*/50 /* translators: Used between list items, there is a space after the comma. */ 51 51 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 52 52 if ( $categories_list ) : … … 54 54 <span class="cat-links"> 55 55 <?php 56 /* translators: 1: CSS classes, 2: list of categories*/56 /* translators: 1: CSS classes, 2: List of categories. */ 57 57 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); 58 58 $show_sep = true; … … 61 61 <?php endif; // End if categories ?> 62 62 <?php 63 /* translators: used between list items, there is a space after the comma*/63 /* translators: Used between list items, there is a space after the comma. */ 64 64 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 65 65 if ( $tags_list ) : … … 70 70 <span class="tag-links"> 71 71 <?php 72 /* translators: 1: CSS classes, 2: list of tags*/72 /* translators: 1: CSS classes, 2: List of tags. */ 73 73 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 74 74 $show_sep = true;
Note: See TracChangeset
for help on using the changeset viewer.