payment_gateways()
18th January 2021
0 Comments
Framework / CMS
WooCommerce [Version: Since 3.2.0]
Syntax
Accepted Parameters
none.
Return Value(s)
Gets the WC_Payment_Gateways class.Examples of payment_gateways()
Example 1
<?php
$user_id = get_current_user_id();
$args = array(
'customer_id' => $user_id
);
$new_order = wc_create_order($args);
$gateways = WC()->payment_gateways->payment_gateways();
$new_order->set_payment_method( $gateways['bacs'] );
Used In Projects
Was This Helpful?
If this post has helped you, please let me know. Your feedback will be highly appreciated and will help me build better content.