- 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-quote.php
r47886 r52929 49 49 50 50 <?php 51 /* translators: Used between list items, there is a space after the comma. */ 52 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 51 $categories_list = get_the_category_list( wp_get_list_item_separator() ); 53 52 54 53 if ( $categories_list ) : … … 64 63 65 64 <?php 66 /* translators: Used between list items, there is a space after the comma. */ 67 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 65 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 68 66 69 67 if ( $tags_list && ! is_wp_error( $tags_list ) ) :
Note: See TracChangeset
for help on using the changeset viewer.