Skip to content

Instantly share code, notes, and snippets.

@jeffikus
Created October 1, 2014 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffikus/7202d2d0a2b9b04c4b2b to your computer and use it in GitHub Desktop.
Save jeffikus/7202d2d0a2b9b04c4b2b to your computer and use it in GitHub Desktop.
WPDB Delete
<?php
// table, $where, $where_format
$wpdb->delete(
$wpdb->posts,
array(
'ID' => 5
),
array(
'%d'
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment