- Timestamp:
- 06/02/2020 05:03:06 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r47808 r47886 490 490 491 491 /* translators: Used between list items, there is a space after the comma. */ 492 $tag _list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) );493 if ( $tag _list) {494 echo '<span class="tags-links">' . $tag _list . '</span>';492 $tags_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) ); 493 if ( $tags_list && ! is_wp_error( $tags_list ) ) { 494 echo '<span class="tags-links">' . $tags_list . '</span>'; 495 495 } 496 496
Note: See TracChangeset
for help on using the changeset viewer.