- Timestamp:
- 04/14/2024 09:55:32 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/inc/template-tags.php
r53399 r57991 111 111 112 112 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 113 if ( $tags_list ) {113 if ( $tags_list && ! is_wp_error( $tags_list ) ) { 114 114 printf( 115 115 /* translators: %s: List of tags. */ … … 153 153 154 154 $tags_list = get_the_tag_list( '', wp_get_list_item_separator() ); 155 if ( $tags_list ) {155 if ( $tags_list && ! is_wp_error( $tags_list ) ) { 156 156 printf( 157 157 /* translators: %s: List of tags. */
Note: See TracChangeset
for help on using the changeset viewer.