Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ataylorme/4100830 to your computer and use it in GitHub Desktop.
Save ataylorme/4100830 to your computer and use it in GitHub Desktop.
Change custom field metakey in WordPress database
function ChangeMetaKey($old, $new){
global $wpdb;
$wpdb->query( "
update $wpdb->postmeta
set meta_key = '$new'
where meta_key = '$old'
");
}//end change metakey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment