forked from mirror/_s
Fix tag list separator i18n in content-single.php
This commit is contained in:
parent
eb7fad1c77
commit
ea03ecdca3
|
@ -25,7 +25,7 @@
|
||||||
$category_list = get_the_category_list( __( ', ', '_s' ) );
|
$category_list = get_the_category_list( __( ', ', '_s' ) );
|
||||||
|
|
||||||
/* translators: used between list items, there is a space after the comma */
|
/* translators: used between list items, there is a space after the comma */
|
||||||
$tag_list = get_the_tag_list( '', ', ' );
|
$tag_list = get_the_tag_list( '', __( ', ', '_s' ) );
|
||||||
|
|
||||||
if ( ! _s_categorized_blog() ) {
|
if ( ! _s_categorized_blog() ) {
|
||||||
// This blog only has 1 category so we just need to worry about tags in the meta text
|
// This blog only has 1 category so we just need to worry about tags in the meta text
|
||||||
|
|
Reference in New Issue