- Timestamp:
- 03/13/2022 08:01:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-image.php
r47886 r52929 56 56 <div class="entry-meta"> 57 57 <?php 58 /* translators: Used between list items, there is a space after the comma. */ 59 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 58 $categories_list = get_the_category_list( wp_get_list_item_separator() ); 60 59 61 60 if ( $categories_list ) : … … 70 69 71 70 <?php 72 /* translators: Used between list items, there is a space after the comma. */ 73 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 71 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 74 72 75 73 if ( $tags_list && ! is_wp_error( $tags_list ) ) :
Note: See TracChangeset
for help on using the changeset viewer.