我为我的Woocommerce订单定义了两个自定义字段。我使用WooCommerce Admin Custom Order Fields extension创建了这两个字段。
当我手动创建订单时(/wp-admin/post-new.php?post_type=shop_order),我可以看到这些字段,我可以成功添加数据并保存订单。
但是,我想在代码中自动填充其中一个字段。我尝试使用以下代码来查找该自定义字段的元键,以便我可以使用update_post_meta()
来填充它,但是当我运行它时,这不会给我任何东西:
add_action('woocommerce_process_shop_order_meta', 'process_offline_order', 10, 2);
function process_offline_order ($post_id, $post) {
echo '<pre>';
print_r(get_post_meta($post_id));
die();
}
该扩展程序的文档告诉我,我可以使用get_post_meta($post_id, '_wc_acof_2')
之类的内容,其中2是该自定义字段的ID,我也尝试过,但没有运气。它没有返回任何东西。
以下是我配置屏幕的屏幕截图:
如果我使用的那个字段不正确,我知道如何访问/填充这些字段以及使用哪个钩子?
答案 0 :(得分:1)
您应该尝试使用&#34; save_post&#34;动作挂钩这样:
// Saving (Updating) or doing an action when submitting
add_action( 'save_post', 'update_order_custom_field_value' );
function update_order_custom_field_value( $post_id ){
// Only for shop order
if ( 'shop_order' != $_POST[ 'post_type' ] )
return $post_id;
// Checking that is not an autosave
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return $post_id;
// Check the user’s permissions (for 'shop_manager' and 'administrator' user roles)
if ( ! current_user_can( 'edit_shop_order', $post_id ) && ! current_user_can( 'edit_shop_orders', $post_id ) )
return $post_id;
// Updating custom field data
if( isset( $_POST['wc-admin-custom-order-fields'][2] ) ) {
// The new value
$value = 'Green';
// OR Get an Order meta data value ( HERE REPLACE "meta_key" by the correct metakey slug)
// $value = get_post_meta( $post_id, 'meta_key', true ); // (use "true" for a string or "false" for an array)
// Replacing and updating the value
update_post_meta( $post_id, '_wc_acof_2', $value );
}
}
// Testing output in order edit pages (below billing address):
add_action( 'woocommerce_admin_order_data_after_billing_address', 'display_order_custom_field_value' );
function display_order_custom_field_value( $order ){
foreach( get_option( 'wc_admin_custom_order_fields' ) as $id => $field ){
$value = get_post_meta( $order->get_id(), '_wc_acof_'.$id, true );
// Define Below the custom field ID to be displayed
if( $id == 2 && ! empty( $value ) ){
echo '<p><strong>' . $field['label'] . ':</strong> ' . $value . '</p>';
}
}
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。