我在Wordpress / Woocommerce项目的functions.php
中有一些代码,在该项目中,我尝试根据USER ID和ORDER ID更新自定义数据库表:
global $wpdb;
$table = $table="wp_thegraffitiwall";
$user = get_current_user_id();
if($user == 0)
exit();
echo "Current User ID is ";
echo $user;
echo "Current Order ID is ";
$wpdb->update($table,$updateStuff,['userid'=>$user]);
// $wpdb->update($table,$updateStuff,['userid'=>$user] AND 'orderid'=>#orderid);
exit("Saved!");
如您所见,我可以检索当前的用户ID并使用它,但是我在获取当前的ORDER ID时遇到问题。
我已经搜索过Stackoverflow,并尝试过以下操作:
$order->get_id();
但这不起作用。
我想将当前的ORDER ID分配给$ order_id,然后在我目前已注释掉的更新函数中使用它。
答案 0 :(得分:0)
订单ID仅存在于前端的“已收到订单”(谢谢)页面和“我的帐户”>“订单”视图页面中(对于当前用户)。因此,如果在主题的function.php文件中使用了该代码,则该代码应该不完整,因为它应该在一个挂钩函数中。
现在,您可以尝试使用此挂钩函数之一,您需要在其中添加与$updateStuff
变量相关的必要代码。在结帐后创建订单时,这两个功能都会被触发。
第一种选择 (您可以在其中直接使用 $order_id
,因为它是一个参数):
add_action( 'woocommerce_checkout_update_order_meta', 'custom_checkout_update_order', 25, 2 );
function custom_checkout_update_order( $order_id, $data ) {
global $wpdb;
// Get the user ID from the Order
$user_id = get_post_meta( $order_id, '_customer_user', true );
$updateStuff = 'something'; // <=== <=== <=== <=== HERE you add your code
$wpdb->update( 'wp_thegraffitiwall', $updateStuff, array('userid' => $userid) );
}
代码进入活动子主题(或活动主题)的function.php文件。
或者这一个 (您可以在其中直接使用 $order_id
,因为它是参数):
add_action( 'woocommerce_thankyou', 'custom_thankyou_action', 20, 1 );
function custom_thankyou_action( $order_id ) {
if ( ! $order_id ) return; // Exit
global $wpdb;
// Get the user ID from the Order
$user_id = get_post_meta( $order_id, '_customer_user', true );
$updateStuff = 'something'; // <=== <=== <=== <=== HERE you add your code
$wpdb->update( 'wp_thegraffitiwall', $updateStuff, array('userid' => $userid) );
}
代码进入活动子主题(或活动主题)的function.php文件。