Changeset 47886 for trunk/src/wp-content/themes/twentytwelve/functions.php
- Timestamp:
- 06/02/2020 05:03:06 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/functions.php
r47808 r47886 502 502 503 503 /* translators: Used between list items, there is a space after the comma. */ 504 $tag _list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) );504 $tags_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) ); 505 505 506 506 $date = sprintf( … … 520 520 ); 521 521 522 if ( $tag _list) {522 if ( $tags_list && ! is_wp_error( $tags_list ) ) { 523 523 /* translators: 1: Category name, 2: Tag name, 3: Date, 4: Author display name. */ 524 524 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' ); … … 534 534 $utility_text, 535 535 $categories_list, 536 $tag _list,536 $tags_list, 537 537 $date, 538 538 $author
Note: See TracChangeset
for help on using the changeset viewer.