Skip to content

Instantly share code, notes, and snippets.

@jeffikus
Created October 1, 2014 22:34
Show Gist options
  • Save jeffikus/3fa2f751515af3360316 to your computer and use it in GitHub Desktop.
Save jeffikus/3fa2f751515af3360316 to your computer and use it in GitHub Desktop.
WPDB Update
<?php
// table, $data, $where, $format, $where_format
$wpdb->update(
$wpdb->postmeta,
array(
'meta_value' => 'false'
),
array(
'post_id' => 5,
'meta_key' => '_custom_meta_key',
),
array(
'%s'
),
array(
'%d',
'%s'
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment