Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mohamedrez/33eff325598dc7626d25 to your computer and use it in GitHub Desktop.
Save mohamedrez/33eff325598dc7626d25 to your computer and use it in GitHub Desktop.
WP: Bulk update custom field using a sql query
<?php
$ids = $wpdb->get_results("SELECT id FROM wp_4_posts WHERE post_type = 'post' LIMIT 0 , 300");
foreach($ids as $id){
update_post_meta($id->id, 'post_country', 'ksa');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment