Skip to content

Instantly share code, notes, and snippets.

@hunk
Created November 29, 2009 00:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hunk/244722 to your computer and use it in GitHub Desktop.
Save hunk/244722 to your computer and use it in GitHub Desktop.
<?php
include('wp-config.php');
include('wp-load.php');
global $wpdb;
$category_id = 11; // ID of the category
$write_panel_id = 5; // ID of the Write Panel
$add = new WP_Query('cat='.$category_id);
if ($add->have_posts()) : while ($add->have_posts()) : $add->the_post();
update_post_meta($post->ID, "_mf_write_panel_id", $write_panel_id);
endwhile; endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment