Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save machouinard/d7c1a372689cf3df5a7727f180c6d01d to your computer and use it in GitHub Desktop.
Save machouinard/d7c1a372689cf3df5a7727f180c6d01d to your computer and use it in GitHub Desktop.
Delete all WordPress trackbacks and pingbacks
<?php
$comments = get_comments( array(
'type' => 'pings',
'fields' => 'ids',
) );
foreach ( $comments as $no => $comment_id ) {
wp_delete_comment( $comment_id, true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment