Changeset 48644 for trunk/src/wp-includes/blocks/rss.php
- Timestamp:
- 07/27/2020 08:08:53 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/blocks/rss.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks/rss.php
r48177 r48644 56 56 if ( is_object( $author ) ) { 57 57 $author = $author->get_name(); 58 $author = '<span class="wp-block-rss__item-author">' . __( 'by' ) . ' ' . esc_html( strip_tags( $author ) ) . '</span>'; 58 $author = '<span class="wp-block-rss__item-author">' . sprintf( 59 /* translators: %s: the author. */ 60 __( 'by %s' ), 61 esc_html( strip_tags( $author ) ) 62 ) . '</span>'; 59 63 } 60 64 }
Note: See TracChangeset
for help on using the changeset viewer.