Make WordPress Core


Ignore:
Timestamp:
05/25/2023 10:53:52 AM (19 months ago)
Author:
spacedmonkey
Message:

Comments: Move wp_queue_comments_for_comment_meta_lazyload function to the correct file.

As of [55855] wp_queue_comments_for_comment_meta_lazyload was deprecated. But deprecate to wp-admin/deprecated.php and not wp-includes/deprecated.php.This is incorrect, as this is a public function and not an admin function.

Props SergeyBiryukov, spacedmonkey.
See #58301.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r55753 r55856  
    46404640    _deprecated_function( __FUNCTION__, '6.3.0' );
    46414641}
     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 */
     4651function 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.