- Timestamp:
- 03/13/2022 08:01:05 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-gallery.php
r47886 r52929 73 73 74 74 <?php 75 /* translators: Used between list items, there is a space after the comma. */ 76 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 75 $categories_list = get_the_category_list( wp_get_list_item_separator() ); 77 76 78 77 if ( $categories_list ) : … … 88 87 89 88 <?php 90 /* translators: Used between list items, there is a space after the comma. */ 91 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 89 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 92 90 93 91 if ( $tags_list && ! is_wp_error( $tags_list ) ) :
Note: See TracChangeset
for help on using the changeset viewer.