小编Md *_*lam的帖子

未捕获的错误:调用成员函数 get_shipping_packages()

我正在尝试获取用户当前的送货区域,但每次尝试获取时都会收到错误

// The package. 

// Get cart shipping packages
$shipping_packages = $woocommerce->cart->get_shipping_packages();

// Get the WC_Shipping_Zones instance object for the first package
$shipping_zone = $woocommerce->wc_get_shipping_zone( reset( $shipping_packages ) );

$zone_id   = $shipping_zone->get_id(); // Get the zone ID
$zone_name = $shipping_zone->get_zone_name(); // Get the zone name

// Testing output
echo '<p>Zone id: ' . $zone_id . ' | Zone name: ' . $zone_name . '</p>';

Run Code Online (Sandbox Code Playgroud)

错误信息

错误信息

php wordpress woocommerce hook-woocommerce woocommerce-bookings

2
推荐指数
1
解决办法
706
查看次数