- Timestamp:
- 06/02/2020 05:03:06 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-quote.php
r47122 r47886 47 47 <footer class="entry-meta"> 48 48 <?php $show_sep = false; ?> 49 49 50 <?php 50 /* translators: Used between list items, there is a space after the comma. */ 51 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 51 /* translators: Used between list items, there is a space after the comma. */ 52 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 53 52 54 if ( $categories_list ) : 53 55 ?> … … 60 62 </span> 61 63 <?php endif; // End if categories. ?> 64 62 65 <?php 63 /* translators: Used between list items, there is a space after the comma. */ 64 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 65 if ( $tags_list ) : 66 /* translators: Used between list items, there is a space after the comma. */ 67 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 68 69 if ( $tags_list && ! is_wp_error( $tags_list ) ) : 66 70 if ( $show_sep ) : 67 71 ?>
Note: See TracChangeset
for help on using the changeset viewer.