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