Changeset 45932 for trunk/src/wp-content/themes/twentyeleven/content.php
- 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.php
r45604 r45932 55 55 <?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) : // Hide category text when not supported ?> 56 56 <?php 57 /* translators: used between list items, there is a space after the comma*/57 /* translators: Used between list items, there is a space after the comma. */ 58 58 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 59 59 if ( $categories_list ) : … … 61 61 <span class="cat-links"> 62 62 <?php 63 /* translators: 1: CSS classes, 2: category list*/63 /* translators: 1: CSS classes, 2: Category list. */ 64 64 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); 65 65 $show_sep = true; … … 70 70 <?php if ( is_object_in_taxonomy( get_post_type(), 'post_tag' ) ) : // Hide tag text when not supported ?> 71 71 <?php 72 /* translators: used between list items, there is a space after the comma*/72 /* translators: Used between list items, there is a space after the comma. */ 73 73 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 74 74 if ( $tags_list ) : … … 79 79 <span class="tag-links"> 80 80 <?php 81 /* translators: 1: CSS classes, 2: tag list*/81 /* translators: 1: CSS classes, 2: Tag list. */ 82 82 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 83 83 $show_sep = true;
Note: See TracChangeset
for help on using the changeset viewer.