WC_Shipping_Method::get_instance_option_key()
Return the name of the option in the WP DB.
Description Description
Return Return
(string)
Source Source
File: includes/abstracts/abstract-wc-shipping-method.php
public function get_instance_option_key() {
return $this->instance_id ? $this->plugin_id . $this->id . '_' . $this->instance_id . '_settings' : '';
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |