diff --git a/wp-includes/comment.php b/wp-includes/comment.php
index eb9c9643c39ae6ba36c5d0552ddfdc5f9a66b679..169131bb6793d3e0107de6fd27f826a9a27335af 100644
--- a/wp-includes/comment.php
+++ b/wp-includes/comment.php
@@ -2859,7 +2859,12 @@ function do_all_enclosures() {
 	}
 }
 
-	// NOT Do trackbacks. A/I
+/**
+ * Perform all trackbacks.
+ *
+ * @since 5.6.0
+ */
+function do_all_trackbacks() {
 	$trackbacks = get_posts(
 		array(
 			'post_type'        => get_post_types(),
@@ -2872,8 +2877,10 @@ function do_all_enclosures() {
 
 	foreach ( $trackbacks as $trackback ) {
 		delete_post_meta( $trackback, '_trackbackme' );
-		// do_trackbacks( $trackback );
+		//do_trackbacks( $trackback );
+		// NOT Do trackbacks. A/I
 	}
+}
 
 
 /**