Changeset 52042 for trunk/src/wp-includes/blocks/latest-comments.php
- Timestamp:
- 11/08/2021 02:26:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks/latest-comments.php
r50048 r52042 43 43 function render_block_core_latest_comments( $attributes = array() ) { 44 44 $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 */ 46 46 apply_filters( 47 47 'widget_comments_args', … … 50 50 'status' => 'approve', 51 51 'post_status' => 'publish', 52 ) 52 ), 53 array() 53 54 ) 54 55 );
Note: See TracChangeset
for help on using the changeset viewer.