Skip to content

Instantly share code, notes, and snippets.

@jeffikus
Created October 1, 2014 22:28
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/98d9b6e5528d19c7f5f0 to your computer and use it in GitHub Desktop.
Save jeffikus/98d9b6e5528d19c7f5f0 to your computer and use it in GitHub Desktop.
WPDB Insert
<?php
// table, $data, $format
$wpdb->insert(
$wpdb->postmeta,
array(
'post_id' => '5',
'meta_key' => '_custom_meta_key',
'meta_value' => 'true'
),
array(
'%d',
'%s',
'%s'
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment