Changeset 55856 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 05/25/2023 10:53:52 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r55753 r55856 4640 4640 _deprecated_function( __FUNCTION__, '6.3.0' ); 4641 4641 } 4642 4643 /** 4644 * Queues comments for metadata lazy-loading. 4645 * 4646 * @since 4.5.0 4647 * @deprecated 6.3.0 Use wp_lazyload_comment_meta() instead. 4648 * 4649 * @param WP_Comment[] $comments Array of comment objects. 4650 */ 4651 function wp_queue_comments_for_comment_meta_lazyload( $comments ) { 4652 _deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta' ); 4653 // Don't use `wp_list_pluck()` to avoid by-reference manipulation. 4654 $comment_ids = array(); 4655 if ( is_array( $comments ) ) { 4656 foreach ( $comments as $comment ) { 4657 if ( $comment instanceof WP_Comment ) { 4658 $comment_ids[] = $comment->comment_ID; 4659 } 4660 } 4661 } 4662 4663 wp_lazyload_comment_meta( $comment_ids ); 4664 }
Note: See TracChangeset
for help on using the changeset viewer.