";
print_r( $args );
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo get_the_title();
if ( $_POST['dry_run'] != '1' ) {
echo "Updating meta for real";
if ( update_post_meta( get_the_ID(), $replace_field, $row[1] ) ) {
$success++;
}
}
}
} else {
echo "No results
";
}
}
echo "