📜  在订单支付页面上检索订单 ID - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:29.280000             🧑  作者: Mango

代码示例1
global $wp;

if ( isset($wp->query_vars['order-pay']) && absint($wp->query_vars['order-pay']) > 0 ) {
    $order_id = absint($wp->query_vars['order-pay']); // The order ID

    $order    = wc_get_order( $order_id ); // Get the WC_Order Object instance
}