WC_Gateway_Paypal_Buttons::get_client_id
Deprecated since 0.5.0. It is no longer supported and may be removed in future releases. Use
Automattic\WooCommerce\Gateways\PayPal\Buttons::get_client_id(). This method will be removed in 11.0.0 instead.Get the client-id for the PayPal buttons.
Method of the class: WC_Gateway_Paypal_Buttons{}
No Hooks.
Returns
String|null. The PayPal client-id, or null if the request fails.
Usage
$WC_Gateway_Paypal_Buttons = new WC_Gateway_Paypal_Buttons(); $WC_Gateway_Paypal_Buttons->get_client_id();
Changelog
| Deprecated since 10.5.0 | Use Automattic\WooCommerce\Gateways\PayPal\Buttons::get_client_id() instead. This method will be removed in 11.0.0. |
WC_Gateway_Paypal_Buttons::get_client_id() WC Gateway Paypal Buttons::get client id code WC 10.5.0
public function get_client_id() {
wc_deprecated_function(
__METHOD__,
'10.5.0',
'Use Automattic\WooCommerce\Gateways\PayPal\Buttons::get_client_id() instead.'
);
return $this->buttons->get_client_id();
}