 src/wp-admin/includes/deprecated.php | 26 ++++++++++++++++++++++++++
 src/wp-includes/comment.php          | 26 --------------------------
 2 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/src/wp-admin/includes/deprecated.php b/src/wp-admin/includes/deprecated.php
index 04f7208422..ae3b3996e7 100644
--- a/src/wp-admin/includes/deprecated.php
+++ b/src/wp-admin/includes/deprecated.php
@@ -1588,3 +1588,29 @@ function image_attachment_fields_to_save( $post, $attachment ) {

 	return $post;
 }
+
+/**
+ * Queues comments for metadata lazy-loading.
+ *
+ * @since 4.5.0
+ * @since 6.3.0 Use wp_lazyload_comment_meta() for lazy-loading of comment meta.
+ * @deprecated 6.3.0 Use wp_lazyload_comment_meta() instead.
+ *
+ * @see wp_lazyload_comment_meta()
+ *
+ * @param WP_Comment[] $comments Array of comment objects.
+ */
+function wp_queue_comments_for_comment_meta_lazyload( $comments ) {
+	_deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta' );
+	// Don't use `wp_list_pluck()` to avoid by-reference manipulation.
+	$comment_ids = array();
+	if ( is_array( $comments ) ) {
+		foreach ( $comments as $comment ) {
+			if ( $comment instanceof WP_Comment ) {
+				$comment_ids[] = $comment->comment_ID;
+			}
+		}
+	}
+
+	wp_lazyload_comment_meta( $comment_ids );
+}
diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php
index 7d01f9f4a8..5d87da2890 100644
--- a/src/wp-includes/comment.php
+++ b/src/wp-includes/comment.php
@@ -525,32 +525,6 @@ function update_comment_meta( $comment_id, $meta_key, $meta_value, $prev_value =
 	return update_metadata( 'comment', $comment_id, $meta_key, $meta_value, $prev_value );
 }

-/**
- * Queues comments for metadata lazy-loading.
- *
- * @since 4.5.0
- * @since 6.3.0 Use wp_lazyload_comment_meta() for lazy-loading of comment meta.
- * @deprecated 6.3.0 Use wp_lazyload_comment_meta() instead.
- *
- * @see wp_lazyload_comment_meta()
- *
- * @param WP_Comment[] $comments Array of comment objects.
- */
-function wp_queue_comments_for_comment_meta_lazyload( $comments ) {
-	_deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta' );
-	// Don't use `wp_list_pluck()` to avoid by-reference manipulation.
-	$comment_ids = array();
-	if ( is_array( $comments ) ) {
-		foreach ( $comments as $comment ) {
-			if ( $comment instanceof WP_Comment ) {
-				$comment_ids[] = $comment->comment_ID;
-			}
-		}
-	}
-
-	wp_lazyload_comment_meta( $comment_ids );
-}
-
 /**
  * Sets the cookies used to store an unauthenticated commentator's identity. Typically used
  * to recall previous comments by this commentator that are still held in moderation.
--
2.39.2 (Apple Git-143)

