Changeset 53381 for branches/6.0/src/wp-includes/blocks/post-author.php
- Timestamp:
- 05/10/2022 04:20:59 PM (3 years ago)
- Location:
- branches/6.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
- Property svn:mergeinfo changed
/trunk merged: 53377-53378
- Property svn:mergeinfo changed
-
branches/6.0/src/wp-includes/blocks/post-author.php
r53157 r53381 40 40 ( ! empty( $attributes['showAvatar'] ) ? '<div class="wp-block-post-author__avatar">' . $avatar . '</div>' : '' ) . 41 41 '<div class="wp-block-post-author__content">' . 42 ( ! empty( $byline ) ? '<p class="wp-block-post-author__byline">' . esc_html( $byline ) . '</p>' : '' ) .42 ( ! empty( $byline ) ? '<p class="wp-block-post-author__byline">' . wp_kses_post( $byline ) . '</p>' : '' ) . 43 43 '<p class="wp-block-post-author__name">' . get_the_author_meta( 'display_name', $author_id ) . '</p>' . 44 44 ( ! empty( $attributes['showBio'] ) ? '<p class="wp-block-post-author__bio">' . get_the_author_meta( 'user_description', $author_id ) . '</p>' : '' ) .
Note: See TracChangeset
for help on using the changeset viewer.