Make WordPress Core


Ignore:
Timestamp:
11/08/2021 02:26:27 PM (4 years ago)
Author:
youknowriad
Message:

Block Editor: Update the WordPress Packages based on Gutenberg 11.9 RC1.

This brings the JS packages up to date and is the first step that will allow us
to include the other block editor updates for WordPress 5.9:
FSE infrastrucutre, site editor and global styles.

Props noisysocks.
See #54337.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/latest-comments.php

    r50048 r52042  
    4343function render_block_core_latest_comments( $attributes = array() ) {
    4444    $comments = get_comments(
    45         // This filter is documented in wp-includes/widgets/class-wp-widget-recent-comments.php.
     45        /** This filter is documented in wp-includes/widgets/class-wp-widget-recent-comments.php */
    4646        apply_filters(
    4747            'widget_comments_args',
     
    5050                'status'      => 'approve',
    5151                'post_status' => 'publish',
    52             )
     52            ),
     53            array()
    5354        )
    5455    );
Note: See TracChangeset for help on using the changeset viewer.