- Timestamp:
- 03/13/2022 08:01:05 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentynineteen/inc/template-tags.php
r52182 r52929 83 83 twentynineteen_posted_on(); 84 84 85 /* translators: Used between list items, there is a space after the comma. */ 86 $categories_list = get_the_category_list( __( ', ', 'twentynineteen' ) ); 85 $categories_list = get_the_category_list( wp_get_list_item_separator() ); 87 86 if ( $categories_list ) { 88 87 printf( … … 95 94 } 96 95 97 /* translators: Used between list items, there is a space after the comma. */ 98 $tags_list = get_the_tag_list( '', __( ', ', 'twentynineteen' ) ); 96 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 99 97 if ( $tags_list && ! is_wp_error( $tags_list ) ) { 100 98 printf(
Note: See TracChangeset
for help on using the changeset viewer.