Automattic\WooCommerce\Blocks\Domain\Services
CheckoutFields::get_additional_fields_keys()
Deprecated from version 8.9.0. It is no longer supported and can be removed in future releases. Use
get_order_fields_keys
instead.Returns an array of fields keys for the additional area location.
Method of the class: CheckoutFields{}
No Hooks.
Return
Array
. An array of fields keys.
Usage
$CheckoutFields = new CheckoutFields(); $CheckoutFields->get_additional_fields_keys();
Changelog
Deprecated since 8.9.0 | Use get_order_fields_keys instead. |
CheckoutFields::get_additional_fields_keys() CheckoutFields::get additional fields keys code WC 9.7.1
public function get_additional_fields_keys() { wc_deprecated_function( __METHOD__, '8.9.0', 'get_order_fields_keys' ); return $this->get_order_fields_keys(); }