我正在尝试同时更新多个帖子的post-meta。我有以下疑问:
<form action="" method="post">
<?php
$variations = new WP_Query();
$variations->query(array(\'showposts\' => -1, \'post_type\' => \'product_variation\' )); while ($variations->have_posts()) : $variations->the_post(); ?>
<input name="regular_price[]" type="text" value="<?php echo get_post_meta(get_the_id(), "_regular_price", true); ?>" />
<input name="sale_price[]" type="text" value="<?php echo get_post_meta(get_the_id(), "_sale_price", true); ?>" />
<input name="item_id[]" type="hidden" value="<?php echo get_the_id(); ?>" />
<?php endwhile; wp_reset_query();?>
<input name="save" type="submit" />
然后,我使用以下php来处理数据:
<?php
if (isset($_POST[\'save\'])) {
$ids = $_POST[\'item_id\'];
$sales = $_POST[\'sale_price\'];
foreach ($ids as $id){
update_post_meta($id,\'_sale_price\',$sale));
}
} ?>
由于某些原因,上述内容无法正确保存。它将只保存最后一个值,并将其应用于所有post meta。我做错什么了吗?
最合适的回答,由SO网友:Chittaranjan 整理而成
这是因为在收集发布的数据时,项目id和价格之间没有关系。按以下步骤进行更改。
将sale\\u price更改为以下,以包含项目id
<input name="sale_price[<?php echo get_the_id(); ?>]" type="text" value="<?php echo get_post_meta(get_the_id(), "_sale_price", true); ?>" />
然后更改收集数据的循环,如下所示。
foreach ($ids as $id){
update_post_meta($id,\'_sale_price\', $sales[$id]);
}