Skip to content

Instantly share code, notes, and snippets.

@mikewing94
Created November 29, 2017 11:09
Show Gist options
  • Save mikewing94/73bc3e4ec16b7ffc6950cf6349da646d to your computer and use it in GitHub Desktop.
Save mikewing94/73bc3e4ec16b7ffc6950cf6349da646d to your computer and use it in GitHub Desktop.
Delete from a custom table in WordPress PHP
<?php
//DELETE SCRIPT CUSTOM TABLE
//CERTIFICATE UPLOADS
$uid = $_GET['uid'];
$cert = $_GET['cert'];
$table = 'wp_certdatabase';
$wpdb->delete( $table, array( 'filename' => $cert ) );
echo "Delete successful!";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment