Changeset 49226 for trunk/src/wp-includes/blocks/rss.php
- Timestamp:
- 10/20/2020 01:33:02 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks/rss.php
r49135 r49226 88 88 $classnames[] = 'columns-' . $attributes['columns']; 89 89 } 90 $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) ); 90 91 91 return sprintf( '<ul class="%s">%s</ul>', esc_attr( implode( ' ', $classnames ) ), $list_items );92 return sprintf( '<ul %s>%s</ul>', $wrapper_attributes, $list_items ); 92 93 } 93 94
Note: See TracChangeset
for help on using the changeset viewer.