Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created June 18, 2018 09:48
Show Gist options
  • Select an option

  • Save anthonybudd/485fbf1fa6dab9be3180a0ab0acff4a1 to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/485fbf1fa6dab9be3180a0ab0acff4a1 to your computer and use it in GitHub Desktop.
<?php
Class ClearOrphanMetaAction extends WP_AJAX{
protected $action = 'clear-orphan-meta-action';
protected function run(){
global $wpdb;
$wpdb->get_results("
DELETE meta
FROM {$wpdb->postmeta} meta
LEFT JOIN {$wpdb->posts} posts ON posts.ID = meta.post_id
WHERE posts.ID IS NULL
");
}
}
ClearOrphanMetaAction::listen();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment