Automattic\WooCommerce\Blocks\Shipping

ShippingController::register_local_pickup_method()publicWC 1.0

Declares the Pickup Location shipping method as a Local Pickup method for WooCommerce.

Метод класса: ShippingController{}

Хуков нет.

Возвращает

Массив.

Использование

$ShippingController = new ShippingController();
$ShippingController->register_local_pickup_method( $methods );
$methods(массив) (обязательный)
Shipping method ids.

Код ShippingController::register_local_pickup_method() WC 8.7.0

public function register_local_pickup_method( $methods ) {
	$methods[] = 'pickup_location';
	return $methods;
}