diff --git a/wp-includes/comment.php b/wp-includes/comment.php index a1bf52d54c487f3c6074df16f3f0e40c2f9aef14..9eb008ffbae38e35da80b428fe1bf52c8413dc4e 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -2857,7 +2857,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(), @@ -2870,8 +2875,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 } +} /**